| Current Path : /var/www/html/administrator/components/com_osmembership/ |
| Current File : /var/www/html/administrator/components/com_osmembership/config.php |
<?php
/**
* @package Joomla
* @subpackage Payment Form
* @author Tuan Pham Ngoc
* @copyright Copyright (C) 2010 - 2015 Ossolution Team
* @license GNU/GPL, see LICENSE.php
*/
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
$config = [
'default_controller_class' => 'OSMembershipController',
'class_prefix' => 'OSMembership',
'language_prefix' => 'OSM',
];
if (Factory::getApplication()->isClient('administrator'))
{
$config['default_view'] = 'dashboard';
}
else
{
$config['default_view'] = 'plans';
}
return $config;