mirror of
https://github.com/Karaka-Management/oms-EventManagement.git
synced 2026-02-14 00:38:41 +00:00
Routes files
This commit is contained in:
parent
f694e0ae93
commit
8d76ac8a37
|
|
@ -1,3 +1,3 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$consoleRoutes = [];
|
$moduleRoutes = [];
|
||||||
|
|
@ -1,28 +1,22 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$httpRoutes = [
|
return [
|
||||||
'^.*/backend/eventmanagement/list.*$' => [
|
'^.*/backend/eventmanagement/list.*$' => [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\EventManagement\Controller:viewEventManagementList',
|
'dest' => '\Modules\EventManagement\Controller:viewEventManagementList',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
'result' => ViewType::HTML,
|
|
||||||
'layout' => ViewLayout::MAIN,
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'^.*/backend/eventmanagement/create.*$' => [
|
'^.*/backend/eventmanagement/create.*$' => [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\EventManagement\Controller:viewEventManagementCreate',
|
'dest' => '\Modules\EventManagement\Controller:viewEventManagementCreate',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
'result' => ViewType::HTML,
|
|
||||||
'layout' => ViewLayout::MAIN,
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'^.*/backend/eventmanagement/profile.*$' => [
|
'^.*/backend/eventmanagement/profile.*$' => [
|
||||||
[
|
[
|
||||||
'dest' => '\Modules\EventManagement\Controller:viewEventManagementProfile',
|
'dest' => '\Modules\EventManagement\Controller:viewEventManagementProfile',
|
||||||
'verb' => RouteVerb::GET,
|
'verb' => RouteVerb::GET,
|
||||||
'result' => ViewType::HTML,
|
|
||||||
'layout' => ViewLayout::MAIN,
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$socketRoutes = [];
|
$moduleRoutes = [];
|
||||||
Loading…
Reference in New Issue
Block a user