PATH:
home
/
letacommog
/
letaweb
/
protected
/
modules
/
helpSystem
/
modules
/
client
<?php /** * ClientModule class file. * @author Digital Mesh <info@digitalmesh.com> * @copyright Copyright © Digital Mesh 2013- * @license http://www.opensource.org/licenses/bsd-license.php New BSD License * @package HelpSystem */ /** * This module Handles the client side of HelpSystem module */ class ClientModule extends CWebModule { public function init() { // this method is called when the module is being created // you may place code here to customize the module or the application // import the module-level models and components $this->setImport(array( 'helpSystem.modules.client.models.*', 'helpSystem.modules.client.models.dao.*', 'helpSystem.modules.client.components.*', )); } public function beforeControllerAction($controller, $action) { if(parent::beforeControllerAction($controller, $action)) { // this method is called before any module controller action is performed // you may place customized code here return true; } else return false; } }
[+]
..
[+]
views
[+]
models
[+]
assets
[+]
components
[-] ClientModule.php
[edit]
[+]
controllers