Commit ff81274b authored by Shakarim Sapa's avatar Shakarim Sapa

Добавлен контроллер и вьюха для работы с триггерами

parent d8e9162c
......@@ -11,7 +11,7 @@ class DefaultController extends BaseController
{
public static function actionsTitles(){
return [
'index' => 'Главная страница модуля'
'Index' => 'Главная страница модуля'
];
}
/**
......
<?php
/**
* Created by PhpStorm.
* User: PHOENIX
* Date: 26.01.16
* Time: 17:03
*/
namespace common\modules\triggers\controllers;
use common\components\AdminController;
class TriggerAdminController extends AdminController {
public static function actionsTitles(){
return [
'Manage' => 'Управление триггерами'
];
}
public function actionManage(){
return $this->render('manage');
}
}
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment