forked from Cavemanon/cavepaintings
flash file handler
git-svn-id: file:///home/shish/svn/shimmie2/trunk@624 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
19
contrib/handle_flash/theme.php
Normal file
19
contrib/handle_flash/theme.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
class FlashFileHandlerTheme extends Themelet {
|
||||
public function display_image($page, $image) {
|
||||
$ilink = $image->get_image_link();
|
||||
// FIXME: object and embed have "height" and "width"
|
||||
$html = "
|
||||
<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'
|
||||
codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0'>
|
||||
<param name='movie' value='$ilink'/>
|
||||
<param name='quality' value='high' />
|
||||
<embed src='$ilink' quality='high'
|
||||
pluginspage='http://www.macromedia.com/go/getflashplayer'
|
||||
type='application/x-shockwave-flash'></embed>
|
||||
</object>";
|
||||
$page->add_block(new Block("Image", $html, "main", 0));
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user