| 123456789101112131415161718192021222324 |
- <?php
- namespace frontend\modules\open;
- /**
- * open module definition class
- */
- class Module extends \yii\base\Module
- {
- /**
- * {@inheritdoc}
- */
- public $controllerNamespace = 'frontend\modules\open\controllers';
- /**
- * {@inheritdoc}
- */
- public function init()
- {
- parent::init();
- // custom initialization code goes here
- }
- }
|