shish c894fd2752 SVG handler
git-svn-id: file:///home/shish/svn/shimmie2/trunk@658 7f39781d-f577-437e-ae19-be835c7a54ca
2007-12-11 18:40:44 +00:00

16 lines
461 B
PHP

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