Файловый менеджер - Редактировать - /var/www/html/administrator/components/com_templates/src/View/Templates/HtmlView.php
Ðазад
<?php /** * @package Joomla.Administrator * @subpackage com_templates * * @copyright (C) 2008 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Templates\Administrator\View\Templates; use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Helper\ContentHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView; use Joomla\CMS\Plugin\PluginHelper; use Joomla\CMS\Toolbar\ToolbarHelper; use Joomla\Component\Templates\Administrator\Model\TemplatesModel; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * View class for a list of templates. * * @since 1.6 */ class HtmlView extends BaseHtmlView { /** * The list of templates * * @var array * @since 1.6 */ protected $items; /** * The pagination object * * @var object * @since 1.6 */ protected $pagination; /** * The model state * * @var object * @since 1.6 */ protected $state; /** * @var string * @since 3.2 */ protected $file; /** * Form object for search filters * * @var \Joomla\CMS\Form\Form * * @since 4.0.0 */ public $filterForm; /** * The active search filters * * @var array * @since 4.0.0 */ public $activeFilters; /** * Is the parameter enabled to show template positions in the frontend? * * @var boolean * @since 4.0.0 */ public $preview; /** * The state of installer override plugin. * * @var array * * @since 4.0.0 */ protected $pluginState; /** * Execute and display a template script. * * @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) { /** @var TemplatesModel $model */ $model = $this->getModel(); $model->setUseExceptions(true); $this->items = $model->getItems(); $this->pagination = $model->getPagination(); $this->state = $model->getState(); $this->total = $model->getTotal(); $this->filterForm = $model->getFilterForm(); $this->activeFilters = $model->getActiveFilters(); $this->preview = ComponentHelper::getParams('com_templates')->get('template_positions_display'); $this->file = base64_encode('home'); $this->pluginState = PluginHelper::isEnabled('installer', 'override'); $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @return void * * @since 1.6 */ protected function addToolbar() { $canDo = ContentHelper::getActions('com_templates'); $clientId = (int) $this->state->get('client_id'); $toolbar = $this->getDocument()->getToolbar(); // Add a shortcut to the styles list view. $toolbar->linkButton('styles', 'COM_TEMPLATES_MANAGER_STYLES_BUTTON') ->url('index.php?option=com_templates&view=styles&client_id=' . $clientId) ->icon('icon-brush thememanager'); // Set the title. if ($clientId === 1) { ToolbarHelper::title(Text::_('COM_TEMPLATES_MANAGER_TEMPLATES_ADMIN'), 'icon-code thememanager'); } else { ToolbarHelper::title(Text::_('COM_TEMPLATES_MANAGER_TEMPLATES_SITE'), 'icon-code thememanager'); } if ($canDo->get('core.admin') || $canDo->get('core.options')) { $toolbar->preferences('com_templates'); $toolbar->divider(); } $toolbar->help('Templates:_Templates'); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка