2016-07-16 12:19:44 +00:00
|
|
|
<?php
|
2018-03-19 22:24:44 +00:00
|
|
|
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
____ ____ __ __ __
|
|
|
|
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
|
|
|
|
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
|
|
|
|
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
|
|
|
|
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
|
|
|
|
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
|
|
|
|
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------------------------------------/
|
2016-07-16 12:19:44 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
@version 2.0.x
|
2016-07-16 12:19:44 +00:00
|
|
|
@created 22nd October, 2015
|
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage jplayerbluemonday.php
|
|
|
|
@author Llewellyn van der Merwe <https://www.vdm.io/>
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
2020-11-30 16:57:29 +00:00
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
A sermon distributor that links to Dropbox.
|
2020-11-30 16:57:29 +00:00
|
|
|
|
2018-03-19 22:24:44 +00:00
|
|
|
/----------------------------------------------------------------------------------------------------------------------------------*/
|
2016-07-16 12:19:44 +00:00
|
|
|
|
|
|
|
// 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));
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<div id="jquery_jplayer_<?php echo $random; ?>" class="jp-jplayer" style="display: none;"></div>
|
|
|
|
<div id="jp_container_<?php echo $random; ?>" class="jp-audio" role="application" aria-label="media player">
|
|
|
|
<div class="jp-type-single">
|
|
|
|
<div class="jp-gui jp-interface">
|
|
|
|
<div class="jp-controls">
|
|
|
|
<button class="jp-play" role="button" tabindex="0"><?php echo JText::_('COM_SERMONDISTRIBUTOR_PLAY'); ?></button>
|
|
|
|
<button class="jp-stop" role="button" tabindex="0"><?php echo JText::_('COM_SERMONDISTRIBUTOR_STOP'); ?></button>
|
|
|
|
</div>
|
|
|
|
<div class="jp-progress">
|
|
|
|
<div class="jp-seek-bar">
|
|
|
|
<div class="jp-play-bar"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="jp-volume-controls">
|
|
|
|
<button class="jp-mute" role="button" tabindex="0"><?php echo JText::_('COM_SERMONDISTRIBUTOR_MUTE'); ?></button>
|
|
|
|
<button class="jp-volume-max" role="button" tabindex="0"><?php echo JText::_('COM_SERMONDISTRIBUTOR_MAX_VOLUME'); ?></button>
|
|
|
|
<div class="jp-volume-bar">
|
|
|
|
<div class="jp-volume-bar-value"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="jp-time-holder">
|
|
|
|
<div class="jp-current-time" role="timer" aria-label="time"> </div>
|
|
|
|
<div class="jp-duration" role="timer" aria-label="duration"> </div>
|
|
|
|
<div class="jp-toggles">
|
|
|
|
<button class="jp-repeat" role="button" tabindex="0"><?php echo JText::_('COM_SERMONDISTRIBUTOR_REPEAT'); ?></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="jp-details">
|
|
|
|
<div class="jp-title" aria-label="title"> </div>
|
|
|
|
</div>
|
|
|
|
<div class="jp-no-solution">
|
|
|
|
<span><?php echo JText::_('COM_SERMONDISTRIBUTOR_UPDATE_REQUIRED'); ?></span>
|
|
|
|
<?php echo JText::_('COM_SERMONDISTRIBUTOR_TO_PLAY_THE_MEDIA_YOU_WILL_NEED_TO_EITHER_UPDATE_YOUR_BROWSER_TO_A_RECENT_VERSION_OR_UPDATE_YOUR'); ?> <a href="http://get.adobe.com/flashplayer/" target="_blank"><?php echo JText::_('COM_SERMONDISTRIBUTOR_FLASH_PLUGIN'); ?></a>.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|