c736f6b7b6
git-svn-id: file:///home/shish/svn/shimmie2/trunk@783 7f39781d-f577-437e-ae19-be835c7a54ca
32 lines
874 B
PHP
32 lines
874 B
PHP
<?php
|
|
|
|
class RatingsTheme extends Themelet {
|
|
public function get_rater_html($image_id, $rating) {
|
|
$i_image_id = int_escape($image_id);
|
|
$s_checked = $rating == 's' ? " checked" : "";
|
|
$q_checked = $rating == 'q' ? " checked" : "";
|
|
$e_checked = $rating == 'e' ? " checked" : "";
|
|
$html = "
|
|
<tr>
|
|
<td>Rating</td>
|
|
<td>
|
|
<input type='radio' name='rating' value='s' id='s'$s_checked><label for='s'>Safe</label>
|
|
<input type='radio' name='rating' value='q' id='q'$q_checked><label for='q'>Questionable</label>
|
|
<input type='radio' name='rating' value='e' id='e'$e_checked><label for='e'>Explicit</label>
|
|
</td>
|
|
</tr>
|
|
";
|
|
return $html;
|
|
}
|
|
|
|
public function rating_to_name($rating) {
|
|
switch($rating) {
|
|
case 's': return "Safe";
|
|
case 'q': return "Questionable";
|
|
case 'e': return "Explicit";
|
|
default: return "Unknown";
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|