add document module

This commit is contained in:
iIronside
2022-11-08 18:01:42 +03:00
parent 8648f5458e
commit 45b110ac44
23 changed files with 986 additions and 0 deletions

View File

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