2007-10-18 01:21:55 +00:00
|
|
|
<?php
|
|
|
|
|
2007-10-21 22:20:31 +00:00
|
|
|
class NumericScoreTheme extends Themelet {
|
2007-11-14 10:11:56 +00:00
|
|
|
public function get_voter_html($image) {
|
|
|
|
$i_image_id = int_escape($image->id);
|
|
|
|
$i_score = int_escape($image->numeric_score);
|
2007-10-18 02:29:39 +00:00
|
|
|
|
|
|
|
$html = "
|
2007-10-21 22:35:47 +00:00
|
|
|
<table style='width: 400px;'>
|
|
|
|
<tr>
|
|
|
|
<td>Current score is $i_score</td>
|
|
|
|
<td>
|
2007-11-14 10:11:56 +00:00
|
|
|
<!--
|
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' />
|
2007-10-21 22:35:47 +00:00
|
|
|
<input type='hidden' name='score' value='1'>
|
|
|
|
<input type='submit' value='Vote Up' />
|
2007-10-18 02:29:39 +00:00
|
|
|
</form>
|
2007-10-21 22:35:47 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
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' />
|
2007-10-21 22:35:47 +00:00
|
|
|
<input type='hidden' name='score' value='-1'>
|
|
|
|
<input type='submit' value='Vote Down' />
|
2007-11-14 10:11:56 +00:00
|
|
|
</form>-->
|
2007-10-21 22:35:47 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2007-10-18 02:29:39 +00:00
|
|
|
";
|
2007-11-14 10:11:56 +00:00
|
|
|
return $html;
|
2007-10-18 02:29:39 +00:00
|
|
|
}
|
2007-10-18 01:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|