Your IP : 216.73.216.55


Current Path : /home/giteleslfp/www/administrator/components/com_admintools/View/SEOAndLinkTools/
Upload File :
Current File : /home/giteleslfp/www/administrator/components/com_admintools/View/SEOAndLinkTools/Html.php

<?php
/**
 * @package   admintools
 * @copyright Copyright (c)2010-2021 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;
	}
}