File manager - Edit - /home/jardides/www/Jardi-design/ZZZ/tmp/install_622fd2a740b3f/Framework/Joomla/View/Admin/AbstractBase.php
Back
<?php /** * @package AllediaFramework * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2021-2022 Joomlashack.com. All rights reserved * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of AllediaFramework. * * AllediaFramework is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * AllediaFramework is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with AllediaFramework. If not, see <https://www.gnu.org/licenses/>. */ namespace Alledia\Framework\Joomla\View\Admin; use Alledia\Framework\Extension; use Alledia\Framework\Joomla\AbstractView; use Joomla\CMS\Filesystem\File; use Joomla\CMS\Filesystem\Path; use Joomla\CMS\Version; defined('_JEXEC') or die(); class AbstractBase extends AbstractView { protected function displayFooter(?Extension $extension = null) { parent::displayFooter(); echo $this->displayAdminFooter($extension); } /** * @param ?Extension $extension */ protected function displayAdminFooter(?Extension $extension = null) { $extension = $extension ?: ($this->extension ?? null); if ($extension) { $output = $extension->getFooterMarkup(); if (empty($output)) { // Use alternative if no custom footer field $layoutPath = $extension->getExtensionPath() . '/views/footer/tmpl/default.php'; if (!File::exists($layoutPath)) { $layoutPath = $extension->getExtensionPath() . '/alledia_views/footer/tmpl/default.php'; } if (File::exists($layoutPath)) { ob_start(); include $layoutPath; $output = ob_get_contents(); ob_end_clean(); } } } return $output ?? ''; } /** * Adjust layout name based on Joomla version * * @return string */ public function setLayout($layout) { $file = $layout; if (Version::MAJOR_VERSION < 4) { $file .= '.j' . Version::MAJOR_VERSION; } if ($file != $layout || $file == 'emptystate') { // Verify layout file exists $fileName = $this->_createFileName('template', ['name' => $file]); $path = Path::find($this->_path['template'], $fileName); if ($path) { $layout = $file; } else { $layout = ($file == 'emptystate') ? 'default' : $layout; } } return parent::setLayout($layout); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.03 |
proxy
|
phpinfo
|
Settings