mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
23 lines
512 B
PHP
23 lines
512 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<?= html::anchor($item->file_url(true), "", $attrs) ?>
|
|
<script>
|
|
flowplayer(
|
|
"<?= $attrs["id"] ?>",
|
|
{
|
|
src: "<?= url::abs_file("lib/flowplayer.swf") ?>",
|
|
wmode: "transparent"
|
|
},
|
|
{
|
|
plugins: {
|
|
h264streaming: {
|
|
url: "<?= url::abs_file("lib/flowplayer.h264streaming.swf") ?>"
|
|
},
|
|
controls: {
|
|
autoHide: 'always',
|
|
hideDelay: 2000
|
|
}
|
|
}
|
|
}
|
|
)
|
|
</script>
|