mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-04 23:34:05 +01:00
23 lines
539 B
PHP
23 lines
539 B
PHP
<?php echo "<?php\n"; ?>
|
|
|
|
class <?php echo $moduleClass; ?> 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
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|