add Notes

This commit is contained in:
Leorne
2019-12-05 15:05:33 +03:00
parent 2279783ca8
commit f7177975a8
16 changed files with 521 additions and 2 deletions

View File

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