mirror of
https://github.com/Karaka-Management/oms-Editor.git
synced 2026-01-18 12:38:40 +00:00
29 lines
703 B
PHP
29 lines
703 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend/editor/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\Editor\Controller:setUpEditorEditor',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
[
|
|
'dest' => '\Modules\Editor\Controller:viewEditorCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/editor/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Editor\Controller:viewEditorList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/editor/single.*$' => [
|
|
[
|
|
'dest' => '\Modules\Editor\Controller:viewEditorSingle',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|