first commit
This commit is contained in:
31
administrator/components/com_quantummanager/controller.php
Normal file
31
administrator/components/com_quantummanager/controller.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* @package quantummanager
|
||||
* @author Dmitry Tsymbal <cymbal@delo-design.ru>
|
||||
* @copyright Copyright © 2019 Delo Design & NorrNext. All rights reserved.
|
||||
* @license GNU General Public License version 3 or later; see license.txt
|
||||
* @link https://www.norrnext.com
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
|
||||
/**
|
||||
* Quantummanager Controller.
|
||||
*
|
||||
* @package quantummanager
|
||||
* @since 1.0
|
||||
*/
|
||||
class QuantummanagerController extends BaseController
|
||||
{
|
||||
|
||||
public function __construct($config = array())
|
||||
{
|
||||
parent::__construct($config);
|
||||
|
||||
PluginHelper::importPlugin('quantummanager');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user