25 lines
377 B
PHP
Executable File
25 lines
377 B
PHP
Executable File
<?php
|
|
|
|
namespace app\modules\banner;
|
|
|
|
/**
|
|
* banner module definition class
|
|
*/
|
|
class Banner extends \yii\base\Module
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public $controllerNamespace = 'app\modules\banner\controllers';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
|
|
// custom initialization code goes here
|
|
}
|
|
}
|