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/contrib/handle_svg/theme.php
shish b2ef2502db proper tags, no need for loader hack?
git-svn-id: file:///home/shish/svn/shimmie2/trunk@660 7f39781d-f577-437e-ae19-be835c7a54ca
2007-12-13 23:27:22 +00:00

16 lines
498 B
PHP

<?php
class SVGFileHandlerTheme extends Themelet {
public function display_image($page, $image) {
$link = make_link("get_svg/{$image->id}/{$image->id}.svg");
$ilink = $image->get_image_link();
// FIXME: object and embed have "height" and "width"
$html = "
<object data='$ilink' type='image/svg+xml' width='300' height='300'>
<embed src='$ilink' type='image/svg+xml' width='300' height='300' />
</object>
";
$page->add_block(new Block("Image", $html, "main", 0));
}
}
?>