mirror of
https://github.com/Karaka-Management/oms-EventManagement.git
synced 2026-01-20 13:08:42 +00:00
25 lines
656 B
PHP
25 lines
656 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend/eventmanagement/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\EventManagement\Controller:viewEventManagementList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/eventmanagement/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\EventManagement\Controller:viewEventManagementCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/eventmanagement/profile.*$' => [
|
|
[
|
|
'dest' => '\Modules\EventManagement\Controller:viewEventManagementProfile',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|