a5a6f4781c
git-svn-id: file:///home/shish/svn/shimmie2/trunk@623 7f39781d-f577-437e-ae19-be835c7a54ca
10 lines
253 B
PHP
10 lines
253 B
PHP
<?php
|
|
|
|
class PixelFileHandlerTheme extends Themelet {
|
|
public function display_image($page, $image) {
|
|
$ilink = $image->get_image_link();
|
|
$html = "<img id='main_image' src='$ilink'>";
|
|
$page->add_block(new Block("Image", $html, "main", 0));
|
|
}
|
|
}
|
|
?>
|