Rating ".($can_rate ? " $human_rating " : " $human_rating ")." "; return $html; } public function display_bulk_rater(string $terms) { global $page; $html = " ".make_form(make_link("admin/bulk_rate"))." "; $page->add_block(new Block("List Controls", $html, "left")); } public function get_selection_rater_html(String $id = "select_rating") { return ""; } public function get_help_html(array $ratings) { $output = '

Search for images with one or more possible ratings.

rating:'.$ratings[0]->search_term.'

Returns images with the '.$ratings[0]->name.' rating.

Ratings can be abbreviated to a single letter as well

rating:'.$ratings[0]->code.'

Returns images with the '.$ratings[0]->name.' rating.

If abbreviations are used, multiple ratings can be searched for.

rating:'.$ratings[0]->code.$ratings[1]->code.'

Returns images with the '.$ratings[0]->name.' or '.$ratings[1]->name.' rating.

Available ratings:

'; foreach ($ratings as $rating) { $output .= ""; } $output .= "
NameSearch TermAbbreviation
{$rating->name}{$rating->search_term}{$rating->code}
"; return $output; } }