[ [ 'dest' => '\Modules\Editor\Controller\BackendController:setUpEditorEditor', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::CREATE, 'state' => PermissionCategory::DOC, ], ], [ 'dest' => '\Modules\Editor\Controller\BackendController:viewEditorCreate', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::CREATE, 'state' => PermissionCategory::DOC, ], ], ], '^/editor/list(\?.*$|$)' => [ [ 'dest' => '\Modules\Editor\Controller\BackendController:viewEditorList', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::DOC, ], ], ], '^/editor/view(\?.*$|$)' => [ [ 'dest' => '\Modules\Editor\Controller\BackendController:viewEditorView', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::DOC, ], ], ], '^/editor/edit(\?.*$|$)' => [ [ 'dest' => '\Modules\Editor\Controller\BackendController:viewEditorEdit', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::MODIFY, 'state' => PermissionCategory::DOC, ], ], ], ];