Module.php 381 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace company\modules\manage;
  3. /**
  4. * mamage module definition class
  5. */
  6. class Module extends \yii\base\Module
  7. {
  8. /**
  9. * @inheritdoc
  10. */
  11. public $controllerNamespace = 'company\modules\manage\controllers';
  12. /**
  13. * @inheritdoc
  14. */
  15. public function init()
  16. {
  17. parent::init();
  18. // custom initialization code goes here
  19. }
  20. }