Files
gallery3/modules/gallery/views/movieplayer-flash.html.php
shadlaws a517d9a33a Follow-on to #2033 - Change variables and js script loading for Flash Flowplayer.
- changed movie_img event variable names to have "flash" in them.
- moved flowplayer.js loading from page.html.php to movieplayer-flash.
- removed conditional loading for small, photo-specific JS files in page.html.php
to keep combined JS consistent between page types (better for caching).
2013-03-04 23:44:50 +01:00

51 lines
1.8 KiB
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<script type="text/javascript" src="<?= url::file("lib/flowplayer-flash/flowplayer.js") ?>"></script>
<?= html::anchor($url, "", $attrs) ?>
<script type="text/javascript">
var id = "<?= $attrs["id"] ?>";
var max_size = <?= $max_size ?>;
// set the size of the movie html anchor, taking into account max_size and height of control bar
function set_movie_size(width, height) {
if((width > max_size) || (height > max_size)) {
if (width > height) {
height = Math.ceil(height * max_size / width);
width = max_size;
} else {
width = Math.ceil(width * max_size / height);
height = max_size;
}
}
height += flowplayer(id).getConfig().plugins.controls.height;
$("#" + id).css({width: width, height: height});
};
// setup flowplayer
flowplayer(id,
$.extend(true, {
"src": "<?= url::abs_file("lib/flowplayer-flash/flowplayer.swf") ?>",
"wmode": "transparent",
"provider": "pseudostreaming"
}, <?= json_encode($fp_flash_params) ?>),
$.extend(true, {
"plugins": {
"pseudostreaming": {
"url": "<?= url::abs_file("lib/flowplayer-flash/flowplayer.pseudostreaming-byterange.swf") ?>"
},
"controls": {
"autoHide": "always",
"hideDelay": 2000,
"height": 24
}
},
"clip": {
"scaling": "fit",
"onMetaData": function(clip) {
// set movie size a second time using actual size from metadata
set_movie_size(parseInt(clip.metaData.width), parseInt(clip.metaData.height));
}
}
}, <?= json_encode($fp_flash_config) ?>)
).ipad();
// set movie size using width and height passed from movie_img function
$("document").ready(set_movie_size(<?= $width ?>, <?= $height ?>));
</script>