add task module

This commit is contained in:
iIronside
2021-11-23 13:13:19 +03:00
parent 12648f16f8
commit ae99b9c4df
28 changed files with 1160 additions and 5 deletions

View File

@ -0,0 +1,24 @@
<?php
namespace backend\modules\task;
/**
* task module definition class
*/
class Task extends \yii\base\Module
{
/**
* {@inheritdoc}
*/
public $controllerNamespace = 'backend\modules\task\controllers';
/**
* {@inheritdoc}
*/
public function init()
{
parent::init();
// custom initialization code goes here
}
}