access - модуль

This commit is contained in:
2019-10-22 18:03:40 +03:00
parent 562c4a925e
commit 34dd9f3f37
21 changed files with 1790 additions and 524 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace app\modules\accesses\controllers;
use yii\web\Controller;
/**
* Default controller for the `accesses` module
*/
class DefaultController extends Controller
{
/**
* Renders the index view for the module
* @return string
*/
public function actionIndex()
{
return $this->render('index');
}
}