a885d1481e
git-svn-id: file:///home/shish/svn/shimmie2/trunk@782 7f39781d-f577-437e-ae19-be835c7a54ca
22 lines
570 B
PHP
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;
|
|
}
|
|
}
|
|
|
|
?>
|