2016-11-27 04:20:48 +00:00
|
|
|
<?php
|
2018-03-19 22:24:44 +00:00
|
|
|
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
____ ____ __ __ __
|
|
|
|
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
|
|
|
|
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
|
|
|
|
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
|
|
|
|
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
|
|
|
|
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
|
|
|
|
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------------------------------------/
|
2016-11-27 04:20:48 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
@version 2.0.x
|
|
|
|
@created 22nd October, 2015
|
2016-11-27 04:20:48 +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
|
|
|
|
@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
|
|
|
/----------------------------------------------------------------------------------------------------------------------------------*/
|
2016-11-27 04:20:48 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
// import Joomla view library
|
|
|
|
jimport('joomla.application.component.view');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sermondistributor View class for the Manual_updater
|
|
|
|
*/
|
|
|
|
class SermondistributorViewManual_updater extends JViewLegacy
|
|
|
|
{
|
|
|
|
// Overwriting JView display method
|
|
|
|
function display($tpl = null)
|
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
// get component params
|
|
|
|
$this->params = JComponentHelper::getParams('com_sermondistributor');
|
2016-11-27 04:20:48 +00:00
|
|
|
// get the application
|
2018-03-03 16:43:27 +00:00
|
|
|
$this->app = JFactory::getApplication();
|
2016-11-27 04:20:48 +00:00
|
|
|
// get the user object
|
|
|
|
$this->user = JFactory::getUser();
|
2018-03-03 16:43:27 +00:00
|
|
|
// get global action permissions
|
|
|
|
$this->canDo = SermondistributorHelper::getActions('manual_updater');
|
2016-11-27 04:20:48 +00:00
|
|
|
// Initialise variables.
|
2018-03-03 16:43:27 +00:00
|
|
|
$this->items = $this->get('Items');
|
2016-11-27 04:20:48 +00:00
|
|
|
|
|
|
|
// We don't need toolbar in the modal window.
|
|
|
|
if ($this->getLayout() !== 'modal')
|
|
|
|
{
|
|
|
|
// add the tool bar
|
|
|
|
$this->addToolBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
// set the document
|
|
|
|
$this->setDocument();
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// Check for errors.
|
|
|
|
if (count($errors = $this->get('Errors')))
|
|
|
|
{
|
|
|
|
throw new Exception(implode("\n", $errors), 500);
|
|
|
|
}
|
|
|
|
|
2016-11-27 04:20:48 +00:00
|
|
|
parent::display($tpl);
|
|
|
|
}
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
/**
|
2016-11-27 04:20:48 +00:00
|
|
|
* Prepares the document
|
|
|
|
*/
|
|
|
|
protected function setDocument()
|
|
|
|
{
|
|
|
|
|
|
|
|
// always make sure jquery is loaded.
|
|
|
|
JHtml::_('jquery.framework');
|
|
|
|
// Load the header checker class.
|
2017-02-17 20:21:37 +00:00
|
|
|
require_once( JPATH_COMPONENT_ADMINISTRATOR.'/helpers/headercheck.php' );
|
2016-11-27 04:20:48 +00:00
|
|
|
// Initialize the header checker.
|
2018-03-03 16:43:27 +00:00
|
|
|
$HeaderCheck = new sermondistributorHeaderCheck;
|
2016-11-27 04:20:48 +00:00
|
|
|
|
|
|
|
// Load uikit options.
|
|
|
|
$uikit = $this->params->get('uikit_load');
|
|
|
|
// Set script size.
|
|
|
|
$size = $this->params->get('uikit_min');
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// Load uikit version.
|
|
|
|
$uikitVersion = $this->params->get('uikit_version', 2);
|
2016-11-27 04:20:48 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// Use Uikit Version 2
|
|
|
|
if (2 == $uikitVersion)
|
2016-11-27 04:20:48 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
// Set css style.
|
|
|
|
$style = $this->params->get('uikit_style');
|
2016-11-27 04:20:48 +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)
|
|
|
|
{
|
|
|
|
$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)
|
2016-11-27 04:20:48 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
$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');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the script to find all uikit components needed.
|
|
|
|
if ($uikit != 2)
|
|
|
|
{
|
|
|
|
// Set the default uikit components in this view.
|
|
|
|
$uikitComp = array();
|
|
|
|
$uikitComp[] = 'uk-form';
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
2016-11-27 04:20:48 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
foreach (SermondistributorHelper::$uk_components[$class] as $name)
|
2016-11-27 04:20:48 +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);
|
|
|
|
}
|
2016-11-27 04:20:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-03 16:43:27 +00:00
|
|
|
}
|
|
|
|
// Use Uikit Version 3
|
|
|
|
elseif (3 == $uikitVersion)
|
|
|
|
{
|
|
|
|
// 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');
|
|
|
|
}
|
2016-11-27 04:20:48 +00:00
|
|
|
}
|
2018-03-03 16:43:27 +00:00
|
|
|
// add the document default css file
|
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/administrator/components/com_sermondistributor/assets/css/manual_updater.css', (SermondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
|
|
|
|
}
|
2016-11-27 04:20:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setting the toolbar
|
|
|
|
*/
|
|
|
|
protected function addToolBar()
|
|
|
|
{
|
|
|
|
// hide the main menu
|
2018-03-03 16:43:27 +00:00
|
|
|
$this->app->input->set('hidemainmenu', true);
|
2016-11-27 04:20:48 +00:00
|
|
|
// add title to the page
|
|
|
|
JToolbarHelper::title(JText::_('COM_SERMONDISTRIBUTOR_MANUAL_UPDATER'),'cogs');
|
2018-03-03 16:43:27 +00:00
|
|
|
// add the back button
|
|
|
|
// JToolBarHelper::custom('manual_updater.back', 'undo-2', '', 'COM_SERMONDISTRIBUTOR_BACK', false);
|
|
|
|
// add cpanel button
|
2016-11-27 04:20:48 +00:00
|
|
|
JToolBarHelper::custom('manual_updater.dashboard', 'grid-2', '', 'COM_SERMONDISTRIBUTOR_DASH', false);
|
|
|
|
if ($this->canDo->get('manual_updater.external_sources'))
|
|
|
|
{
|
|
|
|
// add External Sources button.
|
|
|
|
JToolBarHelper::custom('manual_updater.gotoExternalSources', 'puzzle', '', 'COM_SERMONDISTRIBUTOR_EXTERNAL_SOURCES', false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// set help url for this view if found
|
2018-03-03 16:43:27 +00:00
|
|
|
$help_url = SermondistributorHelper::getHelpUrl('manual_updater');
|
|
|
|
if (SermondistributorHelper::checkString($help_url))
|
|
|
|
{
|
|
|
|
JToolbarHelper::help('COM_SERMONDISTRIBUTOR_HELP_MANAGER', false, $help_url);
|
|
|
|
}
|
2016-11-27 04:20:48 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// add the options comp button
|
|
|
|
if ($this->canDo->get('core.admin') || $this->canDo->get('core.options'))
|
2016-11-27 04:20:48 +00:00
|
|
|
{
|
|
|
|
JToolBarHelper::preferences('com_sermondistributor');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
/**
|
2016-11-27 04:20:48 +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)
|
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
// use the helper htmlEscape method instead.
|
2016-11-27 04:20:48 +00:00
|
|
|
return SermondistributorHelper::htmlEscape($var, $this->_charset);
|
|
|
|
}
|
|
|
|
}
|