| 1 | <?php |
||
| 19 | class Module extends \yii\base\Module implements BootstrapInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | public $controllerNamespace = 'modules\sitemap\frontend\controllers'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @inheritdoc |
||
| 28 | */ |
||
| 29 | public function init() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Bootstrap method to be called during application bootstrap stage. |
||
| 38 | * |
||
| 39 | * @param Application $app the application currently running |
||
| 40 | */ |
||
| 41 | public function bootstrap($app) |
||
| 64 | } |
||
| 65 |