Routes files

This commit is contained in:
Dennis Eichhorn 2016-04-02 16:24:59 +02:00
parent 4b3cb36dc1
commit 07142fea40
3 changed files with 3 additions and 11 deletions

View File

@ -1,3 +1,3 @@
<?php
$consoleRoutes = [];
$moduleRoutes = [];

View File

@ -1,36 +1,28 @@
<?php
$httpRoutes = [
return [
'^.*/backend/checklist/list.*$' => [
[
'dest' => '\Modules\Checklist\Controller:viewChecklistList',
'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
],
],
'^.*/backend/checklist/template/list.*$' => [
[
'dest' => '\Modules\Checklist\Controller:viewChecklistTemplateList',
'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
],
],
'^.*/backend/checklist/template/create.*$' => [
[
'dest' => '\Modules\Checklist\Controller:viewChecklistTemplateCreate',
'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
],
],
'^.*/backend/checklist/template/view.*$' => [
[
'dest' => '\Modules\Checklist\Controller:viewChecklistTemplateView',
'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
],
],
];

View File

@ -1,3 +1,3 @@
<?php
$socketRoutes = [];
$moduleRoutes = [];