2007-10-18 01:21:55 +00:00
|
|
|
<?php
|
|
|
|
|
2007-10-21 22:20:31 +00:00
|
|
|
class NumericScoreTheme extends Themelet {
|
2007-10-18 02:29:39 +00:00
|
|
|
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>
|
2007-10-21 22:20:31 +00:00
|
|
|
<form action='".make_link("numeric_score/vote")."' method='POST'>
|
2007-10-18 02:29:39 +00:00
|
|
|
<input type='hidden' name='image_id' value='$i_image_id' />
|
|
|
|
<input type='hidden' name='score' value='-2'>
|
|
|
|
<input type='submit' value='Vote Down' />
|
|
|
|
</form>
|
2007-10-21 22:20:31 +00:00
|
|
|
<form action='".make_link("numeric_score/vote")."' method='POST'>
|
2007-10-18 02:29:39 +00:00
|
|
|
<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));
|
|
|
|
}
|
2007-10-18 01:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|