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/ext/handle_ico/theme.php

13 lines
294 B
PHP
Raw Normal View History

<?php
class IcoFileHandlerTheme extends Themelet {
2009-01-04 19:54:16 +00:00
public function display_image(Page $page, Image $image) {
$ilink = make_link("get_ico/{$image->id}/{$image->id}.ico");
$html = "
<img id='main_image' src='$ilink'>
";
2012-03-19 19:09:52 +00:00
$page->add_block(new Block("Image", $html, "main", 10));
}
}