add module test task

This commit is contained in:
iironside
2022-03-09 19:10:44 +03:00
parent 7874fc3447
commit c4d35ace86
13 changed files with 575 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<?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
}
}