things work now

git-svn-id: file:///home/shish/svn/shimmie2/trunk@542 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish
2007-10-21 22:35:47 +00:00
parent a9d1671d17
commit 252bea060d
4 changed files with 18 additions and 11 deletions

View File

@ -3,21 +3,28 @@
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;
$i_score = int_escape($score);
$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='-1'>
<input type='submit' value='Vote Down' />
</form>
<table style='width: 400px;'>
<tr>
<td>Current score is $i_score</td>
<td>
<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='1'>
<input type='submit' value='Vote Up' />
</form>
</td>
<td>
<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='-1'>
<input type='submit' value='Vote Down' />
</form>
</td>
</tr>
</table>
";
$page->add_block(new Block(null, $html, "main", 7));
}