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