| Current Path : /home/jlgagfroyt/www/components/com_acymailing/router/ |
| Current File : /home/jlgagfroyt/www/components/com_acymailing/router/base.php |
<?php
/**
* @package AcyMailing for Joomla!
* @version 5.11.3
* @author acyba.com
* @copyright (C) 2009-2022 ACYBA S.A.R.L. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
if (class_exists('JComponentRouterBase')) {
abstract class AcymailingRouterBase extends JComponentRouterBase
{
}
} else {
class AcymailingRouterBase
{
var $app;
var $menu;
public function __construct($app = null, $menu = null)
{
$this->app = empty($app) ? JFactory::getApplication('site') : $app;
$this->menu = empty($menu) ? $this->app->getMenu() : $menu;
}
}
}