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