@copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html A sermon distributor that links to Dropbox. /-----------------------------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('JPATH_BASE') or die('Restricted access'); $random = SermondistributorHelper::randomkey(5); if (isset($displayData['script']) && SermondistributorHelper::checkArray($displayData['script'])) { $script = array(); $script[] = 'jQuery(document).ready(function(){'; $script[] = 'jQuery("#jquery_jplayer_'.$random.'").jPlayer({'; $script[] = 'ready: function (event) {'; $script[] = 'jQuery(this).jPlayer("setMedia", {'; $script[] = implode('', $displayData['script']); $script[] = '}); },'; $script[] = 'cssSelectorAncestor: "#jp_container_'.$random.'",'; $script[] = 'swfPath: "'.$displayData['swfPath'].'",'; $script[] = 'supplied: "'.implode(', ', $displayData['supplied']).'",'; $script[] = 'wmode: "window", preload: "auto",'; $script[] = 'useStateClassSkin: true,'; $script[] = 'autoBlur: false,'; $script[] = 'smoothPlayBar: true,'; $script[] = 'keyEnabled: true,'; $script[] = 'remainingDuration: true,'; $script[] = 'toggleDuration: true'; $script[] = '}); });'; // get the document $document = JFactory::getDocument(); // add script to document header $document->addScriptDeclaration(implode("\n", $script)); } ?>