mirror of
https://github.com/Karaka-Management/oms-Checklist.git
synced 2026-01-27 06:58:42 +00:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
$httpRoutes = [
|
|
'^.*/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,
|
|
],
|
|
],
|
|
];
|