fembooru/ext/handle_ico/theme.php

15 lines
423 B
PHP
Raw Normal View History

2020-01-26 13:19:35 +00:00
<?php declare(strict_types=1);
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}'>
";
$page->add_block(new Block("Image", $html, "main", 10));
}
}