summaryrefslogtreecommitdiff
path: root/framework/cli/views/shell/module/module.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/cli/views/shell/module/module.php')
-rw-r--r--framework/cli/views/shell/module/module.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/framework/cli/views/shell/module/module.php b/framework/cli/views/shell/module/module.php
new file mode 100644
index 0000000..c8f6e02
--- /dev/null
+++ b/framework/cli/views/shell/module/module.php
@@ -0,0 +1,28 @@
+<?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
+
+ // import the module-level models and components
+ $this->setImport(array(
+ '<?php echo $moduleID; ?>.models.*',
+ '<?php echo $moduleID; ?>.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;
+ }
+}