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