Файловый менеджер - Редактировать - /home/harasnat/www/solequestre/administrator/components/com_akeebabackup/src/Mixin/ControllerReusableModelsTrait.php
Назад
<?php /** * @package akeebabackup * @copyright Copyright (c)2006-2024 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\Component\AkeebaBackup\Administrator\Mixin; use Exception; use Joomla\CMS\MVC\View\HtmlView; use Joomla\CMS\MVC\View\ViewInterface; defined('_JEXEC') || die; trait ControllerReusableModelsTrait { static $_models = []; public function getModel($name = '', $prefix = '', $config = []) { if (empty($name)) { $name = ucfirst($this->input->get('view', $this->default_view)); } $prefix = ucfirst($prefix ?: $this->app->getName()); $hash = hash('md5', strtolower($name . $prefix)); if (isset(self::$_models[$hash])) { return self::$_models[$hash]; } self::$_models[$hash] = parent::getModel($name, $prefix, $config); return self::$_models[$hash]; } /** * @param string $name * @param string $type * @param string $prefix * @param array $config * * @return ViewInterface|HtmlView * @throws Exception */ public function getView($name = '', $type = '', $prefix = '', $config = []) { $document = $this->app->getDocument(); if (empty($name)) { $name = $this->input->get('view', $this->default_view); } if (empty($type)) { $type = $document->getType(); } if (empty($config)) { $viewLayout = $this->input->get('layout', 'default', 'string'); $config = ['base_path' => $this->basePath, 'layout' => $viewLayout]; } $hadView = isset(self::$views) && isset(self::$views[$name]) && isset(self::$views[$name][$type]) && isset(self::$views[$name][$type][$prefix]) && !empty(self::$views[$name][$type][$prefix]); $view = parent::getView($name, $type, $prefix, $config); if (!$hadView) { // Get/Create the model if ($model = $this->getModel($name, 'Administrator', ['base_path' => $this->basePath])) { // Push the model into the view (as default) $view->setModel($model, true); } $view->document = $document; } return $view; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка