2008-04-08 21:58:17 +00:00
|
|
|
<?php
|
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
class IcoFileHandlerTheme extends Themelet
|
|
|
|
{
|
|
|
|
public function display_image(Page $page, Image $image)
|
|
|
|
{
|
|
|
|
$ilink = $image->get_image_link();
|
|
|
|
$html = "
|
2016-09-01 23:08:28 -04:00
|
|
|
<img id='main_image' class='shm-main-image' alt='main image' src='$ilink'
|
|
|
|
data-width='{$image->width}' data-height='{$image->height}'>
|
2008-04-11 01:49:18 +00:00
|
|
|
";
|
2019-05-28 17:59:38 +01:00
|
|
|
$page->add_block(new Block("Image", $html, "main", 10));
|
|
|
|
}
|
2008-04-08 21:58:17 +00:00
|
|
|
}
|