mirror of
https://github.com/Karaka-Management/oms-Editor.git
synced 2026-01-25 07:48:42 +00:00
23 lines
579 B
PHP
23 lines
579 B
PHP
<?php
|
|
|
|
return [
|
|
'^.*/backend/editor/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\Editor\Controller:setUpEditorEditor',
|
|
'verb' => RouteVerb::GET,
|
|
'result' => ViewType::HTML,
|
|
'layout' => ViewLayout::NULL,
|
|
],
|
|
[
|
|
'dest' => '\Modules\Editor\Controller:viewEditorCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/editor/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Editor\Controller:viewEditorList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|