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

117 lines
4.6 KiB
PHP

<?php
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
____ ____ __ __ __
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
/------------------------------------------------------------------------------------------------------------------------------------/
@version 3.0.x
@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');
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Layout\LayoutHelper;
use VDM\Joomla\Utilities\ArrayHelper;
use VDM\Joomla\Utilities\StringHelper;
$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'] = Text::_('COM_SERMONDISTRIBUTOR_PLAY_AUDIO_FILE');
}
else
{
$audio['name'] = Text::_('COM_SERMONDISTRIBUTOR_PLAY_AUDIO_FILE').' '.$num;
}
$audio['filename'] = $filename;
$players[] = LayoutHelper::render('soundmanagerthreesixty', $audio);
$num++;
}
elseif (2 == $displayData->playerKey)
{
// use jPlayer
if (1 == count($displayData->download_links))
{
$name = Text::_('COM_SERMONDISTRIBUTOR_AUDIO_FILE');
}
else
{
$name = Text::_('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[] = LayoutHelper::render('htmlfive', $link);
}
}
// use jPlayer layout
if (isset($players['script']) && ArrayHelper::check($players['script']))
{
$players['swfPath'] = Uri::root() .'media/com_sermondistributor/jplayer/jplayer';
if (2 == $displayData->playerKey && 1 == count($displayData->download_links))
{
$players = LayoutHelper::render('jplayerbluemonday', $players);
}
elseif (2 == $displayData->playerKey && count($displayData->download_links) > 1)
{
$players = LayoutHelper::render('jplayerbluemondaylist', $players);
}
}
}
?>
<?php if (Factory::getApplication()->client->browser): ?>
<?php if (1 == $displayData->playerKey && ArrayHelper::check($players)): ?>
<li><?php echo implode('',$players); ?></li>
<?php elseif (2 == $displayData->playerKey && StringHelper::check($players)): ?>
<div class="uk-width-1-1 uk-margin"><div class="uk-panel"><?php echo $players; ?></div></div>
<?php elseif (3 == $displayData->playerKey && ArrayHelper::check($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; ?>