add employee module

This commit is contained in:
iIronside
2021-11-16 13:14:28 +03:00
parent f7c8ab4de6
commit fc0b84f0f4
30 changed files with 4504 additions and 27 deletions

View File

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