2024-03-02 16:16:31 +00:00
|
|
|
<?php
|
|
|
|
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
____ ____ __ __ __
|
|
|
|
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
|
|
|
|
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
|
|
|
|
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
|
|
|
|
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
|
|
|
|
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
|
|
|
|
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------------------------------------/
|
|
|
|
|
|
|
|
@version 5.0.x
|
|
|
|
@created 22nd October, 2015
|
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage HtmlView.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.
|
|
|
|
|
|
|
|
/----------------------------------------------------------------------------------------------------------------------------------*/
|
|
|
|
namespace TrueChristianChurch\Component\Sermondistributor\Administrator\View\Preacher;
|
|
|
|
|
|
|
|
use Joomla\CMS\Factory;
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
use Joomla\CMS\Toolbar\Toolbar;
|
|
|
|
use Joomla\CMS\Form\FormHelper;
|
|
|
|
use Joomla\CMS\Session\Session;
|
|
|
|
use Joomla\CMS\Uri\Uri;
|
|
|
|
use Joomla\CMS\Component\ComponentHelper;
|
|
|
|
use Joomla\CMS\HTML\HTMLHelper as Html;
|
|
|
|
use Joomla\CMS\Layout\FileLayout;
|
|
|
|
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
|
|
|
|
use Joomla\CMS\Plugin\PluginHelper;
|
|
|
|
use Joomla\CMS\Toolbar\ToolbarHelper;
|
|
|
|
use Joomla\CMS\Document\Document;
|
|
|
|
use TrueChristianChurch\Component\Sermondistributor\Administrator\Helper\SermondistributorHelper;
|
2024-05-03 05:46:28 +00:00
|
|
|
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
2024-03-02 16:16:31 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
\defined('_JEXEC') or die;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Preacher Html View class
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
class HtmlView extends BaseHtmlView
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Preacher view display method
|
|
|
|
*
|
|
|
|
* @param string $tpl The name of the template file to parse; automatically searches through the template paths.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function display($tpl = null)
|
|
|
|
{
|
|
|
|
// set params
|
|
|
|
$this->params = ComponentHelper::getParams('com_sermondistributor');
|
2024-05-03 05:46:28 +00:00
|
|
|
$this->useCoreUI = true;
|
2024-03-02 16:16:31 +00:00
|
|
|
// Assign the variables
|
|
|
|
$this->form = $this->get('Form');
|
|
|
|
$this->item = $this->get('Item');
|
|
|
|
$this->styles = $this->get('Styles');
|
|
|
|
$this->scripts = $this->get('Scripts');
|
|
|
|
$this->state = $this->get('State');
|
|
|
|
// get action permissions
|
|
|
|
$this->canDo = SermondistributorHelper::getActions('preacher', $this->item);
|
|
|
|
// get input
|
|
|
|
$jinput = Factory::getApplication()->input;
|
|
|
|
$this->ref = $jinput->get('ref', 0, 'word');
|
|
|
|
$this->refid = $jinput->get('refid', 0, 'int');
|
|
|
|
$return = $jinput->get('return', null, 'base64');
|
|
|
|
// set the referral string
|
|
|
|
$this->referral = '';
|
|
|
|
if ($this->refid && $this->ref)
|
|
|
|
{
|
|
|
|
// return to the item that referred to this item
|
|
|
|
$this->referral = '&ref=' . (string) $this->ref . '&refid=' . (int) $this->refid;
|
|
|
|
}
|
|
|
|
elseif($this->ref)
|
|
|
|
{
|
|
|
|
// return to the list view that referred to this item
|
|
|
|
$this->referral = '&ref=' . (string) $this->ref;
|
|
|
|
}
|
|
|
|
// check return value
|
|
|
|
if (!is_null($return))
|
|
|
|
{
|
|
|
|
// add the return value
|
|
|
|
$this->referral .= '&return=' . (string) $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get Linked view data
|
|
|
|
$this->vvvsermons = $this->get('Vvvsermons');
|
|
|
|
|
|
|
|
// Set the toolbar
|
|
|
|
$this->addToolBar();
|
|
|
|
|
|
|
|
// Check for errors.
|
|
|
|
if (count($errors = $this->get('Errors')))
|
|
|
|
{
|
|
|
|
throw new \Exception(implode("\n", $errors), 500);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the html view document stuff
|
|
|
|
$this->_prepareDocument();
|
|
|
|
|
|
|
|
// Display the template
|
|
|
|
parent::display($tpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add the page title and toolbar.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function addToolbar(): void
|
|
|
|
{
|
|
|
|
Factory::getApplication()->input->set('hidemainmenu', true);
|
|
|
|
$user = Factory::getApplication()->getIdentity();
|
|
|
|
$userId = $user->id;
|
|
|
|
$isNew = $this->item->id == 0;
|
|
|
|
|
|
|
|
ToolbarHelper::title( Text::_($isNew ? 'COM_SERMONDISTRIBUTOR_PREACHER_NEW' : 'COM_SERMONDISTRIBUTOR_PREACHER_EDIT'), 'pencil-2 article-add');
|
|
|
|
// Built the actions for new and existing records.
|
|
|
|
if (StringHelper::check($this->referral))
|
|
|
|
{
|
|
|
|
if ($this->canDo->get('preacher.create') && $isNew)
|
|
|
|
{
|
|
|
|
// We can create the record.
|
|
|
|
ToolbarHelper::save('preacher.save', 'JTOOLBAR_SAVE');
|
|
|
|
}
|
|
|
|
elseif ($this->canDo->get('preacher.edit'))
|
|
|
|
{
|
|
|
|
// We can save the record.
|
|
|
|
ToolbarHelper::save('preacher.save', 'JTOOLBAR_SAVE');
|
|
|
|
}
|
|
|
|
if ($isNew)
|
|
|
|
{
|
|
|
|
// Do not creat but cancel.
|
|
|
|
ToolbarHelper::cancel('preacher.cancel', 'JTOOLBAR_CANCEL');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We can close it.
|
|
|
|
ToolbarHelper::cancel('preacher.cancel', 'JTOOLBAR_CLOSE');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($isNew)
|
|
|
|
{
|
|
|
|
// For new records, check the create permission.
|
|
|
|
if ($this->canDo->get('preacher.create'))
|
|
|
|
{
|
|
|
|
ToolbarHelper::apply('preacher.apply', 'JTOOLBAR_APPLY');
|
|
|
|
ToolbarHelper::save('preacher.save', 'JTOOLBAR_SAVE');
|
|
|
|
ToolbarHelper::custom('preacher.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
|
|
|
|
};
|
|
|
|
ToolbarHelper::cancel('preacher.cancel', 'JTOOLBAR_CANCEL');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($this->canDo->get('preacher.edit'))
|
|
|
|
{
|
|
|
|
// We can save the new record
|
|
|
|
ToolbarHelper::apply('preacher.apply', 'JTOOLBAR_APPLY');
|
|
|
|
ToolbarHelper::save('preacher.save', 'JTOOLBAR_SAVE');
|
|
|
|
// We can save this record, but check the create permission to see
|
|
|
|
// if we can return to make a new one.
|
|
|
|
if ($this->canDo->get('preacher.create'))
|
|
|
|
{
|
|
|
|
ToolbarHelper::custom('preacher.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$canVersion = ($this->canDo->get('core.version') && $this->canDo->get('preacher.version'));
|
|
|
|
if ($this->state->params->get('save_history', 1) && $this->canDo->get('preacher.edit') && $canVersion)
|
|
|
|
{
|
|
|
|
ToolbarHelper::versions('com_sermondistributor.preacher', $this->item->id);
|
|
|
|
}
|
|
|
|
if ($this->canDo->get('preacher.create'))
|
|
|
|
{
|
|
|
|
ToolbarHelper::custom('preacher.save2copy', 'save-copy.png', 'save-copy_f2.png', 'JTOOLBAR_SAVE_AS_COPY', false);
|
|
|
|
}
|
|
|
|
ToolbarHelper::cancel('preacher.cancel', 'JTOOLBAR_CLOSE');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ToolbarHelper::divider();
|
|
|
|
ToolbarHelper::inlinehelp();
|
|
|
|
// set help url for this view if found
|
|
|
|
$this->help_url = SermondistributorHelper::getHelpUrl('preacher');
|
|
|
|
if (StringHelper::check($this->help_url))
|
|
|
|
{
|
|
|
|
ToolbarHelper::help('COM_SERMONDISTRIBUTOR_HELP_MANAGER', false, $this->help_url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Escapes a value for output in a view script.
|
|
|
|
*
|
|
|
|
* @param mixed $var The output to escape.
|
|
|
|
* @param bool $shorten The switch to shorten.
|
|
|
|
* @param int $length The shorting length.
|
|
|
|
*
|
|
|
|
* @return mixed The escaped value.
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function escape($var, bool $shorten = true, int $length = 30)
|
|
|
|
{
|
|
|
|
if (!is_string($var))
|
|
|
|
{
|
|
|
|
return $var;
|
|
|
|
}
|
|
|
|
|
|
|
|
return StringHelper::html($var, $this->_charset ?? 'UTF-8', $shorten, $length);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare some document related stuff.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function _prepareDocument(): void
|
|
|
|
{
|
2024-05-03 05:46:28 +00:00
|
|
|
// Load jQuery
|
|
|
|
Html::_('jquery.framework');
|
2024-03-02 16:16:31 +00:00
|
|
|
$isNew = ($this->item->id < 1);
|
|
|
|
$this->getDocument()->setTitle(Text::_($isNew ? 'COM_SERMONDISTRIBUTOR_PREACHER_NEW' : 'COM_SERMONDISTRIBUTOR_PREACHER_EDIT'));
|
|
|
|
// add styles
|
|
|
|
foreach ($this->styles as $style)
|
|
|
|
{
|
|
|
|
Html::_('stylesheet', $style, ['version' => 'auto']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the CSS for Footable
|
|
|
|
Html::_('stylesheet', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css', ['version' => 'auto']);
|
|
|
|
Html::_('stylesheet', 'media/com_sermondistributor/footable-v3/css/footable.standalone.min.css', ['version' => 'auto']);
|
|
|
|
// Add the JavaScript for Footable (adding all functions)
|
|
|
|
Html::_('script', 'media/com_sermondistributor/footable-v3/js/footable.min.js', ['version' => 'auto']);
|
|
|
|
|
|
|
|
$footable = "jQuery(document).ready(function() { jQuery(function () { jQuery('.footable').footable();});});";
|
|
|
|
$this->getDocument()->addScriptDeclaration($footable);
|
|
|
|
|
|
|
|
// add scripts
|
|
|
|
foreach ($this->scripts as $script)
|
|
|
|
{
|
|
|
|
Html::_('script', $script, ['version' => 'auto']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|