11 lines
349 B
PHP
11 lines
349 B
PHP
|
<?php
|
||
|
|
||
|
class CustomViewTheme extends ViewTheme {
|
||
|
public function display_page($page, $image, $editor_parts) {
|
||
|
$page->set_title("Image {$image->id}: ".html_escape($image->get_tag_list()));
|
||
|
$page->set_heading(html_escape($image->get_tag_list()));
|
||
|
$page->add_block(new Block(null, $this->build_info($image, $editor_parts), "main", 10));
|
||
|
}
|
||
|
}
|
||
|
?>
|