This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/contrib/numeric_score/theme.php
shish c537a2f5ae rename
git-svn-id: file:///home/shish/svn/shimmie2/trunk@540 7f39781d-f577-437e-ae19-be835c7a54ca
2007-10-21 22:21:12 +00:00

26 lines
783 B
PHP

<?php
class NumericScoreTheme extends Themelet {
public function display_voter($page, $image_id, $score) {
$i_image_id = int_escape($image_id);
$i_score = int_escape($score) / 2;
$html = "
Current score is $i_score
<br>
<form action='".make_link("numeric_score/vote")."' method='POST'>
<input type='hidden' name='image_id' value='$i_image_id' />
<input type='hidden' name='score' value='-2'>
<input type='submit' value='Vote Down' />
</form>
<form action='".make_link("numeric_score/vote")."' method='POST'>
<input type='hidden' name='image_id' value='$i_image_id' />
<input type='hidden' name='score' value='2'>
<input type='submit' value='Vote Up' />
</form>
";
$page->add_block(new Block(null, $html, "main", 7));
}
}
?>