2015-11-30 21:30:54 +00:00
|
|
|
<?php
|
2018-03-19 22:24:44 +00:00
|
|
|
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
____ ____ __ __ __
|
|
|
|
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
|
|
|
|
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
|
|
|
|
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
|
|
|
|
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
|
|
|
|
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
|
|
|
|
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------------------------------------/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
@version 2.0.x
|
|
|
|
@created 22nd October, 2015
|
2015-11-30 21:30:54 +00:00
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage view.html.php
|
|
|
|
@author Llewellyn van der Merwe <https://www.vdm.io/>
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
2015-12-23 12:44:56 +00:00
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
|
|
|
|
A sermon distributor that links to Dropbox.
|
|
|
|
|
2018-03-19 22:24:44 +00:00
|
|
|
/----------------------------------------------------------------------------------------------------------------------------------*/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sermondistributor View class for the Sermon
|
|
|
|
*/
|
|
|
|
class SermondistributorViewSermon extends JViewLegacy
|
|
|
|
{
|
|
|
|
// Overwriting JView display method
|
|
|
|
function display($tpl = null)
|
2018-03-03 16:43:27 +00:00
|
|
|
{
|
2015-11-30 21:30:54 +00:00
|
|
|
// get combined params of both component and menu
|
|
|
|
$this->app = JFactory::getApplication();
|
|
|
|
$this->params = $this->app->getParams();
|
|
|
|
$this->menu = $this->app->getMenu()->getActive();
|
|
|
|
// get the user object
|
|
|
|
$this->user = JFactory::getUser();
|
2016-07-16 12:19:44 +00:00
|
|
|
// Initialise variables.
|
2018-03-03 16:43:27 +00:00
|
|
|
$this->item = $this->get('Item');
|
2015-11-30 21:30:54 +00:00
|
|
|
// add a hit to the sermon
|
|
|
|
if ($this->hit($this->item->id))
|
|
|
|
{
|
|
|
|
$this->item->hits++;
|
|
|
|
}
|
|
|
|
// set view key
|
|
|
|
$this->item->viewKey = 'sermon';
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// Set the toolbar
|
2015-11-30 21:30:54 +00:00
|
|
|
$this->addToolBar();
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// set the document
|
2015-11-30 21:30:54 +00:00
|
|
|
$this->_prepareDocument();
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// Check for errors.
|
|
|
|
if (count($errors = $this->get('Errors')))
|
|
|
|
{
|
|
|
|
throw new Exception(implode("\n", $errors), 500);
|
|
|
|
}
|
|
|
|
|
2015-11-30 21:30:54 +00:00
|
|
|
parent::display($tpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Increment the hit counter for the sermon.
|
|
|
|
*
|
|
|
|
* @param integer $pk Primary key of the sermon to increment.
|
|
|
|
*
|
|
|
|
* @return boolean True if successful;
|
|
|
|
*/
|
|
|
|
public function hit($pk = 0)
|
|
|
|
{
|
|
|
|
if ($pk)
|
|
|
|
{
|
|
|
|
$db = JFactory::getDbo();
|
|
|
|
$query = $db->getQuery(true);
|
|
|
|
|
|
|
|
// Fields to update.
|
|
|
|
$fields = array(
|
|
|
|
$db->quoteName('hits') . ' = '.$db->quoteName('hits').' + 1'
|
|
|
|
);
|
|
|
|
|
|
|
|
// Conditions for which records should be updated.
|
|
|
|
$conditions = array(
|
|
|
|
$db->quoteName('id') . ' = ' . $pk
|
|
|
|
);
|
|
|
|
|
|
|
|
$query->update($db->quoteName('#__sermondistributor_sermon'))->set($fields)->where($conditions);
|
|
|
|
|
|
|
|
$db->setQuery($query);
|
|
|
|
return $db->execute();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
/**
|
2015-11-30 21:30:54 +00:00
|
|
|
* Prepares the document
|
|
|
|
*/
|
|
|
|
protected function _prepareDocument()
|
|
|
|
{
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// always make sure jquery is loaded.
|
2015-11-30 21:30:54 +00:00
|
|
|
JHtml::_('jquery.framework');
|
2016-07-16 12:19:44 +00:00
|
|
|
// Load the header checker class.
|
2015-11-30 21:30:54 +00:00
|
|
|
require_once( JPATH_COMPONENT_SITE.'/helpers/headercheck.php' );
|
2016-07-16 12:19:44 +00:00
|
|
|
// Initialize the header checker.
|
2018-03-03 16:43:27 +00:00
|
|
|
$HeaderCheck = new sermondistributorHeaderCheck;
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// Load uikit options.
|
2015-11-30 21:30:54 +00:00
|
|
|
$uikit = $this->params->get('uikit_load');
|
2016-07-16 12:19:44 +00:00
|
|
|
// Set script size.
|
2015-11-30 21:30:54 +00:00
|
|
|
$size = $this->params->get('uikit_min');
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// Load uikit version.
|
2018-09-06 08:34:13 +00:00
|
|
|
$this->uikitVersion = $this->params->get('uikit_version', 2);
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// Use Uikit Version 2
|
2018-09-06 08:34:13 +00:00
|
|
|
if (2 == $this->uikitVersion)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
// Set css style.
|
|
|
|
$style = $this->params->get('uikit_style');
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// The uikit css.
|
|
|
|
if ((!$HeaderCheck->css_loaded('uikit.min') || $uikit == 1) && $uikit != 2 && $uikit != 3)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/media/com_sermondistributor/uikit-v2/css/uikit'.$style.$size.'.css', (SermondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
|
|
|
|
}
|
|
|
|
// The uikit js.
|
|
|
|
if ((!$HeaderCheck->js_loaded('uikit.min') || $uikit == 1) && $uikit != 2 && $uikit != 3)
|
|
|
|
{
|
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_sermondistributor/uikit-v2/js/uikit'.$size.'.js', (SermondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// Load the script to find all uikit components needed.
|
|
|
|
if ($uikit != 2)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
// Set the default uikit components in this view.
|
|
|
|
$uikitComp = array();
|
|
|
|
$uikitComp[] = 'data-uk-grid';
|
|
|
|
$uikitComp[] = 'data-uk-tooltip';
|
|
|
|
|
|
|
|
// Get field uikit components needed in this view.
|
|
|
|
$uikitFieldComp = $this->get('UikitComp');
|
|
|
|
if (isset($uikitFieldComp) && SermondistributorHelper::checkArray($uikitFieldComp))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
if (isset($uikitComp) && SermondistributorHelper::checkArray($uikitComp))
|
|
|
|
{
|
|
|
|
$uikitComp = array_merge($uikitComp, $uikitFieldComp);
|
|
|
|
$uikitComp = array_unique($uikitComp);
|
|
|
|
}
|
|
|
|
else
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
$uikitComp = $uikitFieldComp;
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2018-03-03 16:43:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the needed uikit components in this view.
|
|
|
|
if ($uikit != 2 && isset($uikitComp) && SermondistributorHelper::checkArray($uikitComp))
|
|
|
|
{
|
|
|
|
// load just in case.
|
|
|
|
jimport('joomla.filesystem.file');
|
|
|
|
// loading...
|
|
|
|
foreach ($uikitComp as $class)
|
|
|
|
{
|
|
|
|
foreach (SermondistributorHelper::$uk_components[$class] as $name)
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
// check if the CSS file exists.
|
|
|
|
if (JFile::exists(JPATH_ROOT.'/media/com_sermondistributor/uikit-v2/css/components/'.$name.$style.$size.'.css'))
|
|
|
|
{
|
|
|
|
// load the css.
|
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/media/com_sermondistributor/uikit-v2/css/components/'.$name.$style.$size.'.css', (SermondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
|
|
|
|
}
|
|
|
|
// check if the JavaScript file exists.
|
|
|
|
if (JFile::exists(JPATH_ROOT.'/media/com_sermondistributor/uikit-v2/js/components/'.$name.$size.'.js'))
|
|
|
|
{
|
|
|
|
// load the js.
|
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_sermondistributor/uikit-v2/js/components/'.$name.$size.'.js', (SermondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript', (SermondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('type' => 'text/javascript', 'async' => 'async') : true);
|
|
|
|
}
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-03 16:43:27 +00:00
|
|
|
}
|
|
|
|
// Use Uikit Version 3
|
2018-09-06 08:34:13 +00:00
|
|
|
elseif (3 == $this->uikitVersion)
|
2018-03-03 16:43:27 +00:00
|
|
|
{
|
|
|
|
// The uikit css.
|
|
|
|
if ((!$HeaderCheck->css_loaded('uikit.min') || $uikit == 1) && $uikit != 2 && $uikit != 3)
|
|
|
|
{
|
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/media/com_sermondistributor/uikit-v3/css/uikit'.$size.'.css', (SermondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
|
|
|
|
}
|
|
|
|
// The uikit js.
|
|
|
|
if ((!$HeaderCheck->js_loaded('uikit.min') || $uikit == 1) && $uikit != 2 && $uikit != 3)
|
|
|
|
{
|
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_sermondistributor/uikit-v3/js/uikit'.$size.'.js', (SermondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
|
|
|
|
}
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|
2016-07-16 12:19:44 +00:00
|
|
|
// load the meta description
|
2015-11-30 21:30:54 +00:00
|
|
|
if (isset($this->item->metadesc) && $this->item->metadesc)
|
|
|
|
{
|
|
|
|
$this->document->setDescription($this->item->metadesc);
|
|
|
|
}
|
|
|
|
elseif ($this->params->get('menu-meta_description'))
|
|
|
|
{
|
|
|
|
$this->document->setDescription($this->params->get('menu-meta_description'));
|
|
|
|
}
|
2016-07-16 12:19:44 +00:00
|
|
|
// load the key words if set
|
2015-11-30 21:30:54 +00:00
|
|
|
if (isset($this->item->metakey) && $this->item->metakey)
|
|
|
|
{
|
|
|
|
$this->document->setMetadata('keywords', $this->item->metakey);
|
|
|
|
}
|
|
|
|
elseif ($this->params->get('menu-meta_keywords'))
|
|
|
|
{
|
|
|
|
$this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords'));
|
|
|
|
}
|
2016-07-16 12:19:44 +00:00
|
|
|
// check the robot params
|
2015-11-30 21:30:54 +00:00
|
|
|
if (isset($this->item->robots) && $this->item->robots)
|
|
|
|
{
|
|
|
|
$this->document->setMetadata('robots', $this->item->robots);
|
|
|
|
}
|
|
|
|
elseif ($this->params->get('robots'))
|
|
|
|
{
|
|
|
|
$this->document->setMetadata('robots', $this->params->get('robots'));
|
|
|
|
}
|
2016-07-16 12:19:44 +00:00
|
|
|
// check if autor is to be set
|
2015-11-30 21:30:54 +00:00
|
|
|
if (isset($this->item->created_by) && $this->params->get('MetaAuthor') == '1')
|
|
|
|
{
|
|
|
|
$this->document->setMetaData('author', $this->item->created_by);
|
|
|
|
}
|
2016-07-16 12:19:44 +00:00
|
|
|
// check if metadata is available
|
2015-11-30 21:30:54 +00:00
|
|
|
if (isset($this->item->metadata) && $this->item->metadata)
|
|
|
|
{
|
|
|
|
$mdata = json_decode($this->item->metadata,true);
|
|
|
|
foreach ($mdata as $k => $v)
|
|
|
|
{
|
|
|
|
if ($v)
|
|
|
|
{
|
|
|
|
$this->document->setMetadata($k, $v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-16 12:19:44 +00:00
|
|
|
// set the player key for the sermon view
|
|
|
|
$this->item->playerKey = (int) $this->params->get('player', 1);
|
|
|
|
if (1 == $this->item->playerKey)
|
|
|
|
{
|
|
|
|
// default for sound mananger 2
|
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_sermondistributor/soundmanager/script/soundmanager2-nodebug-jsmin.js');
|
|
|
|
// 360-player
|
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/media/com_sermondistributor/soundmanager/demo/360-player/360player.css');
|
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/media/com_sermondistributor/soundmanager/demo/360-player/360player-visualization.css');
|
|
|
|
// 360-player
|
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_sermondistributor/soundmanager/demo/360-player/script/berniecode-animator.js');
|
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_sermondistributor/soundmanager/demo/360-player/script/excanvas.js');
|
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_sermondistributor/soundmanager/demo/360-player/script/360player.js');
|
|
|
|
}
|
|
|
|
elseif (2 == $this->item->playerKey)
|
|
|
|
{
|
|
|
|
// blue Monday
|
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/media/com_sermondistributor/jplayer/skin/blue.monday/css/jplayer.blue.monday.min.css');
|
|
|
|
// default for jPlayer.js
|
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_sermondistributor/jplayer/jplayer/jquery.jplayer.min.js');
|
|
|
|
if (count($this->item->download_links) > 1)
|
|
|
|
{
|
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_sermondistributor/jplayer/add-on/jplayer.playlist.min.js');
|
|
|
|
}
|
|
|
|
}
|
2015-11-30 21:30:54 +00:00
|
|
|
// add the document default css file
|
2018-03-03 16:43:27 +00:00
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/components/com_sermondistributor/assets/css/sermon.css', (SermondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
|
|
|
|
}
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setting the toolbar
|
|
|
|
*/
|
|
|
|
protected function addToolBar()
|
|
|
|
{
|
|
|
|
// adding the joomla toolbar to the front
|
|
|
|
JLoader::register('JToolbarHelper', JPATH_ADMINISTRATOR.'/includes/toolbar.php');
|
2018-03-03 16:43:27 +00:00
|
|
|
|
2015-11-30 21:30:54 +00:00
|
|
|
// set help url for this view if found
|
|
|
|
$help_url = SermondistributorHelper::getHelpUrl('sermon');
|
|
|
|
if (SermondistributorHelper::checkString($help_url))
|
|
|
|
{
|
|
|
|
JToolbarHelper::help('COM_SERMONDISTRIBUTOR_HELP_MANAGER', false, $help_url);
|
|
|
|
}
|
|
|
|
// now initiate the toolbar
|
|
|
|
$this->toolbar = JToolbar::getInstance();
|
|
|
|
}
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
/**
|
2015-11-30 21:30:54 +00:00
|
|
|
* Escapes a value for output in a view script.
|
|
|
|
*
|
|
|
|
* @param mixed $var The output to escape.
|
|
|
|
*
|
|
|
|
* @return mixed The escaped value.
|
|
|
|
*/
|
|
|
|
public function escape($var, $sorten = false, $length = 40)
|
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
// use the helper htmlEscape method instead.
|
2015-11-30 21:30:54 +00:00
|
|
|
return SermondistributorHelper::htmlEscape($var, $this->_charset, $sorten, $length);
|
|
|
|
}
|
|
|
|
}
|