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 a885d1481e working numeric score
git-svn-id: file:///home/shish/svn/shimmie2/trunk@782 7f39781d-f577-437e-ae19-be835c7a54ca
2008-04-08 16:53:48 +00:00

22 lines
570 B
PHP

<?php
class NumericScoreTheme extends Themelet {
public function get_voter_html($image) {
$i_image_id = int_escape($image->id);
$i_score = int_escape($image->numeric_score);
$html = "
<tr>
<td>Score ($i_score)</td>
<td>
<input type='radio' name='numeric_score' value='u' id='u'><label for='u'>Up</label>
<input type='radio' name='numeric_score' value='n' id='n' checked><label for='n'>Keep</label>
<input type='radio' name='numeric_score' value='d' id='d'><label for='d'>Down</label>
</td>
</tr>
";
return $html;
}
}
?>