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