1 | <?php |
||
22 | class Module extends \yii\base\Module |
||
23 | { |
||
24 | const CONSOLE_CONTROLLER_MAP = [ |
||
25 | 'create' => [ |
||
26 | 'class' => 'assayerpro\sitemap\console\CreateController', |
||
27 | ], |
||
28 | ]; |
||
29 | /** |
||
30 | * The namespace that controller classes are in. |
||
31 | * |
||
32 | * @var string |
||
33 | * @access public |
||
34 | */ |
||
35 | public $controllerNamespace = 'assayerpro\sitemap\controllers'; |
||
36 | |||
37 | 5 | public function init() |
|
44 | |||
45 | 3 | public function getComponent() { |
|
57 | } |
||
58 |