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

23 lines
570 B
PHP
Raw Normal View History

<?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;
}
}
?>