mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-04-14 09:49:06 -04:00
24 lines
574 B
PHP
24 lines
574 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<?= html::anchor($item->file_url(true), "", $attrs) ?>
|
|
<script type="text/javascript">
|
|
flowplayer(
|
|
"<?= $attrs["id"] ?>",
|
|
{
|
|
src: "<?= url::abs_file("lib/flowplayer.swf") ?>",
|
|
wmode: "transparent",
|
|
provider: "pseudostreaming"
|
|
},
|
|
{
|
|
plugins: {
|
|
pseudostreaming: {
|
|
url: "<?= url::abs_file("lib/flowplayer.pseudostreaming.swf") ?>"
|
|
},
|
|
controls: {
|
|
autoHide: 'always',
|
|
hideDelay: 2000
|
|
}
|
|
}
|
|
}
|
|
)
|
|
</script>
|