File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_admintools/View/SEOAndLinkTools
Viewing File: /home/astoriaah/www/administrator/components/com_admintools/View/SEOAndLinkTools/Html.php
<?php /** * @package admintools * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\AdminTools\Admin\View\SEOAndLinkTools; defined('_JEXEC') || die; use Akeeba\AdminTools\Admin\Model\SEOAndLinkTools; use FOF40\View\DataView\Html as BaseView; class Html extends BaseView { /** * The configuration for this feature * * @var array */ public $salconfig; protected function onBeforeMain() { /** @var SEOAndLinkTools $model */ $model = $this->getModel(); $config = $model->getConfig(); $this->salconfig = $config; } }