09f768afdd
git-svn-id: file:///home/shish/svn/shimmie2/trunk@797 7f39781d-f577-437e-ae19-be835c7a54ca
16 lines
447 B
PHP
16 lines
447 B
PHP
<?php
|
|
|
|
class IcoFileHandlerTheme extends Themelet {
|
|
public function display_image($page, $image) {
|
|
$ilink = $image->get_image_link();
|
|
$width = $image->width;
|
|
$height = $image->height;
|
|
$html = "
|
|
<object data='$ilink' type='image/x-icon' width='$width' height='$height'>
|
|
<embed src='$ilink' type='image/x-icon' width='$width' height='$height' />
|
|
</object>
|
|
";
|
|
$page->add_block(new Block("Image", $html, "main", 0));
|
|
}
|
|
}
|
|
?>
|