2008-04-08 21:58:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class IcoFileHandlerTheme extends Themelet {
|
|
|
|
public function display_image($page, $image) {
|
|
|
|
$ilink = $image->get_image_link();
|
2008-04-11 01:49:18 +00:00
|
|
|
$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>
|
|
|
|
";
|
2008-04-08 21:58:17 +00:00
|
|
|
$page->add_block(new Block("Image", $html, "main", 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|