com_extensiondistributor/admin/views/import/view.html.php

144 lines
4.6 KiB
PHP

<?php
/*----------------------------------------------------------------------------------| www.vdm.io |----/
Agence Agerix
/-------------------------------------------------------------------------------------------------------/
@version 1.x.x
@build 2nd June, 2022
@created 12th December, 2020
@package Extension Distributor
@subpackage view.html.php
@author Emmanuel Danan <https://agerix.fr>
@copyright Copyright (C) 2021. All Rights Reserved.
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
____ _____ _____ __ __ __ __ ___ _____ __ __ ____ _____ _ _ ____ _ _ ____
(_ _)( _ )( _ )( \/ )( ) /__\ / __)( _ )( \/ )( _ \( _ )( \( )( ___)( \( )(_ _)
.-_)( )(_)( )(_)( ) ( )(__ /(__)\ ( (__ )(_)( ) ( )___/ )(_)( ) ( )__) ) ( )(
\____) (_____)(_____)(_/\/\_)(____)(__)(__) \___)(_____)(_/\/\_)(__) (_____)(_)\_)(____)(_)\_) (__)
/------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\MVC\View\HtmlView;
/**
* Extensiondistributor Html View class for the Import
*/
class ExtensiondistributorViewImport extends HtmlView
{
// Overwriting JView display method
function display($tpl = null)
{
// get component params
$this->params = JComponentHelper::getParams('com_extensiondistributor');
// get the application
$this->app = JFactory::getApplication();
// get the user object
$this->user = JFactory::getUser();
// get global action permissions
$this->canDo = ExtensiondistributorHelper::getActions('import');
// Initialise variables.
$this->item = $this->get('Item');
// We don't need sidebar in the modal window.
if ($this->getLayout() !== 'modal')
{
//$this->app->input->set('hidemainmenu', false);
ExtensiondistributorHelper::addSubmenu('import');
$this->sidebar = JHtmlSidebar::render();
}
// We don't need toolbar in the modal window.
if ($this->getLayout() !== 'modal')
{
// add the tool bar
$this->addToolBar();
}
// set the document
$this->setDocument();
// Check for errors.
if (count($errors = $this->get('Errors')))
{
throw new Exception(implode(PHP_EOL, $errors), 500);
}
parent::display($tpl);
}
/**
* Prepares the document
*/
protected function setDocument()
{
// always make sure jquery is loaded.
JHtml::_('jquery.framework');
// Load the header checker class.
require_once( JPATH_COMPONENT_ADMINISTRATOR.'/helpers/headercheck.php' );
// Initialize the header checker.
$HeaderCheck = new extensiondistributorHeaderCheck;
$this->document->addStyleSheet("https://cdn.jsdelivr.net/npm/uikit@3.2.3/dist/css/uikit.min.css");
$this->document->addScript("https://cdn.jsdelivr.net/npm/uikit@3.2.3/dist/js/uikit.min.js");
$this->document->addScript("https://cdn.jsdelivr.net/npm/uikit@3.2.3/dist/js/uikit-icons.min.js");
// add the document default css file
$this->document->addStyleSheet(JURI::root(true) .'/administrator/components/com_extensiondistributor/assets/css/import.css', (ExtensiondistributorHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
}
/**
* Setting the toolbar
*/
protected function addToolBar()
{
// hide the main menu
$this->app->input->set('hidemainmenu', true);
// set the title
if (isset($this->item->name) && $this->item->name)
{
$title = $this->item->name;
}
// Check for empty title and add view name if param is set
if (empty($title))
{
$title = JText::_('COM_EXTENSIONDISTRIBUTOR_IMPORT');
}
// add title to the page
JToolbarHelper::title($title,'download');
// add cpanel button
JToolBarHelper::custom('import.dashboard', 'grid-2', '', 'COM_EXTENSIONDISTRIBUTOR_DASH', false);
// set help url for this view if found
$this->help_url = ExtensiondistributorHelper::getHelpUrl('import');
if (ExtensiondistributorHelper::checkString($this->help_url))
{
JToolbarHelper::help('COM_EXTENSIONDISTRIBUTOR_HELP_MANAGER', false, $this->help_url);
}
// add the options comp button
if ($this->canDo->get('core.admin') || $this->canDo->get('core.options'))
{
JToolBarHelper::preferences('com_extensiondistributor');
}
}
/**
* 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)
{
// use the helper htmlEscape method instead.
return ExtensiondistributorHelper::htmlEscape($var, $this->_charset);
}
}
?>