Joomla-Sermon-Distributor/site/layouts/mediaplayer.php

112 lines
4.6 KiB
PHP

<?php
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
__ __ _ _____ _ _ __ __ _ _ _
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
| |
|_|
/-------------------------------------------------------------------------------------------------------------------------------/
@version 2.0.x
@build 3rd March, 2018
@created 22nd October, 2015
@package Sermon Distributor
@subpackage mediaplayer.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
A sermon distributor that links to Dropbox.
/-----------------------------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('JPATH_BASE') or die('Restricted access');
$players = array();
$num = 'A';
if (isset($displayData->download_links) && count($displayData->download_links))
{
foreach ($displayData->download_links as $filename => $link)
{
if (1 == $displayData->playerKey && strpos($filename, '.mp3') !== false) // TODO only mp3 at this time
{
// use sound manager
$audio = array();
$audio['link'] = $link;
if (1 == count($displayData->download_links))
{
$audio['name'] = JText::_('COM_SERMONDISTRIBUTOR_PLAY_AUDIO_FILE');
}
else
{
$audio['name'] = JText::_('COM_SERMONDISTRIBUTOR_PLAY_AUDIO_FILE').' '.$num;
}
$audio['filename'] = $filename;
$players[] = JLayoutHelper::render('soundmanagerthreesixty', $audio);
$num++;
}
elseif (2 == $displayData->playerKey)
{
// use jPlayer
if (1 == count($displayData->download_links))
{
$name = JText::_('COM_SERMONDISTRIBUTOR_AUDIO_FILE');
}
else
{
$name = JText::_('COM_SERMONDISTRIBUTOR_AUDIO_FILE').' '.$num;
}
if (!isset($players['script']))
{
$players['script'] = array();
$players['supplied'] = array();
}
if (strpos($filename, '.mp3') !== false)
{
$players['script'][] = 'title: "'.$name.'", mp3: "'.$link.'"';
$players['supplied'][] = 'mp3';
}
elseif (strpos($filename, '.m4a') !== false)
{
$players['script'][] = 'title: "'.$name.'", m4a: "'.$link.'"';
$players['supplied'][] = 'm4a';
}
$num++;
}
elseif (3 == $displayData->playerKey)
{
// use html5 player (plain and simple)
$players[] = JLayoutHelper::render('htmlfive', $link);
}
}
// use jPlayer layout
if (isset($players['script']) && SermondistributorHelper::checkArray($players['script']))
{
$players['swfPath'] = JURI::root() .'media/com_sermondistributor/jplayer/jplayer';
if (2 == $displayData->playerKey && 1 == count($displayData->download_links))
{
$players = JLayoutHelper::render('jplayerbluemonday', $players);
}
elseif (2 == $displayData->playerKey && count($displayData->download_links) > 1)
{
$players = JLayoutHelper::render('jplayerbluemondaylist', $players);
}
}
}
?>
<?php if (JFactory::getApplication()->client->browser): ?>
<?php if (1 == $displayData->playerKey && SermondistributorHelper::checkArray($players)): ?>
<li><?php echo implode('',$players); ?></li>
<?php elseif (2 == $displayData->playerKey && SermondistributorHelper::checkString($players)): ?>
<div class="uk-width-1-1 uk-margin"><div class="uk-panel"><?php echo $players; ?></div></div>
<?php elseif (3 == $displayData->playerKey && SermondistributorHelper::checkArray($players)): ?>
<div class="uk-width-1-1 uk-margin"><div class="uk-panel"><?php echo implode('</div><div class="uk-panel">', $players); ?></div></div>
<?php endif; ?>
<?php endif; ?>