您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

25 行
424 B

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