|
| 1 | +## Ajax |
| 2 | +nodeAjaxTags: |
| 3 | + path: /node/tags/{nodeId} |
| 4 | + methods: [GET] |
| 5 | + controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodesController::getTagsAction |
| 6 | + format: json |
| 7 | + requirements: { nodeId : "[0-9]+" } |
| 8 | +nodeAjaxEdit: |
| 9 | + path: /node/edit/{nodeId} |
| 10 | + controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodesController::editAction |
| 11 | + format: json |
| 12 | + requirements: { nodeId : "[0-9]+" } |
| 13 | +nodeContextualMenu: |
| 14 | + path: /node/contextual-menu/{node}/{translation} |
| 15 | + controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodeContextualMenuController |
| 16 | + format: html |
| 17 | + requirements: { node : "[0-9]+", translation : "[0-9]+", } |
| 18 | +searchAjax: |
| 19 | + path: /search |
| 20 | + methods: [GET] |
| 21 | + defaults: |
| 22 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxSearchController::searchAction |
| 23 | + _format: json |
| 24 | +nodesStatusesAjax: |
| 25 | + path: /nodes/statuses |
| 26 | + defaults: |
| 27 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodesController::statusesAction |
| 28 | + _format: json |
| 29 | +nodesTreeAjax: |
| 30 | + path: /nodes/tree |
| 31 | + methods: [GET] |
| 32 | + defaults: |
| 33 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodeTreeController::getTreeAction |
| 34 | + _format: json |
| 35 | +tagsTreeAjax: |
| 36 | + path: /tags/tree |
| 37 | + methods: [GET] |
| 38 | + defaults: |
| 39 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxTagTreeController::getTreeAction |
| 40 | + _format: json |
| 41 | +foldersTreeAjax: |
| 42 | + path: /folders/tree |
| 43 | + methods: [GET] |
| 44 | + defaults: |
| 45 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxFolderTreeController::getTreeAction |
| 46 | + _format: json |
| 47 | +nodesQuickAddAjax: |
| 48 | + path: /nodes/add |
| 49 | + defaults: |
| 50 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodesController::quickAddAction |
| 51 | + _format: json |
| 52 | +nodesAjaxExplorerPage: |
| 53 | + path: /nodes/explore |
| 54 | + methods: [GET] |
| 55 | + defaults: |
| 56 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodesExplorerController::indexAction |
| 57 | + _format: json |
| 58 | +nodeTypesAjaxByArray: |
| 59 | + path: /node-types/list |
| 60 | + methods: [GET] |
| 61 | + defaults: |
| 62 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodeTypesController::listAction |
| 63 | + _format: json |
| 64 | +nodeTypesAjaxExplorer: |
| 65 | + path: /node-types/explorer |
| 66 | + methods: [GET] |
| 67 | + defaults: |
| 68 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodeTypesController::indexAction |
| 69 | + _format: json |
| 70 | +nodesAjaxByArray: |
| 71 | + path: /nodes/list |
| 72 | + methods: [GET] |
| 73 | + defaults: |
| 74 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxNodesExplorerController::listAction |
| 75 | + _format: json |
| 76 | + |
| 77 | +# Explorer provider |
| 78 | +providerAjaxExplorerPage: |
| 79 | + path: /provider/explore |
| 80 | + methods: [GET] |
| 81 | + defaults: |
| 82 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxExplorerProviderController::indexAction |
| 83 | + _format: json |
| 84 | +providerAjaxByArray: |
| 85 | + path: /provider/list |
| 86 | + methods: [GET] |
| 87 | + defaults: |
| 88 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxExplorerProviderController::listAction |
| 89 | + _format: json |
| 90 | + |
| 91 | +# Entities |
| 92 | +entitiesAjaxExplorerPage: |
| 93 | + path: /entities/explore |
| 94 | + methods: [GET] |
| 95 | + defaults: |
| 96 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxEntitiesExplorerController::indexAction |
| 97 | + _format: json |
| 98 | +entitiesAjaxByArray: |
| 99 | + path: /entities/list |
| 100 | + methods: [GET] |
| 101 | + defaults: |
| 102 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxEntitiesExplorerController::listAction |
| 103 | + _format: json |
| 104 | +# Documents |
| 105 | +documentsAjaxExplorerPage: |
| 106 | + path: /documents/explore |
| 107 | + methods: [GET] |
| 108 | + defaults: |
| 109 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxDocumentsExplorerController::indexAction |
| 110 | + _format: json |
| 111 | +documentsAjaxByArray: |
| 112 | + path: /documents/list |
| 113 | + methods: [GET] |
| 114 | + defaults: |
| 115 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxDocumentsExplorerController::listAction |
| 116 | + _format: json |
| 117 | +foldersAjaxExplorerPage: |
| 118 | + path: /folders/explore |
| 119 | + methods: [GET] |
| 120 | + defaults: |
| 121 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxFoldersExplorerController::indexAction |
| 122 | + _format: json |
| 123 | + |
| 124 | +# customForms |
| 125 | +customFormsAjaxExplorerPage: |
| 126 | + path: /custom-forms/explore |
| 127 | + methods: [GET] |
| 128 | + defaults: |
| 129 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxCustomFormsExplorerController::indexAction |
| 130 | + _format: json |
| 131 | +customFormsAjaxByArray: |
| 132 | + path: /custom-forms/list |
| 133 | + methods: [GET] |
| 134 | + defaults: |
| 135 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxCustomFormsExplorerController::listAction |
| 136 | + _format: json |
| 137 | +## Ajax |
| 138 | +tagAjaxEdit: |
| 139 | + path: /tag/edit/{tagId} |
| 140 | + defaults: |
| 141 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxTagsController::editAction |
| 142 | + _format: json |
| 143 | + requirements: { tagId : "[0-9]+" } |
| 144 | +tagAjaxSearch: |
| 145 | + path: /tag/search |
| 146 | + methods: [GET] |
| 147 | + defaults: |
| 148 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxTagsController::searchAction |
| 149 | + _format: json |
| 150 | +tagsAjaxExplorer: |
| 151 | + path: /tag/explore |
| 152 | + methods: [GET] |
| 153 | + defaults: |
| 154 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxTagsController::indexAction |
| 155 | + _format: json |
| 156 | +tagsAjaxExplorerList: |
| 157 | + path: /tag/explore/list |
| 158 | + methods: [GET] |
| 159 | + defaults: |
| 160 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxTagsController::explorerListAction |
| 161 | + _format: json |
| 162 | +tagsAjaxByArray: |
| 163 | + path: /tag/explore/array |
| 164 | + methods: [GET] |
| 165 | + defaults: |
| 166 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxTagsController::listArrayAction |
| 167 | + _format: json |
| 168 | +tagsAjaxCreate: |
| 169 | + path: /tag/create |
| 170 | + methods: [POST] |
| 171 | + defaults: |
| 172 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxTagsController::createAction |
| 173 | + _format: json |
| 174 | +## Ajax |
| 175 | +foldersAjaxEdit: |
| 176 | + path: /folder/edit/{folderId} |
| 177 | + defaults: |
| 178 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxFoldersController::editAction |
| 179 | + _format: json |
| 180 | + requirements: { tagId : "[0-9]+" } |
| 181 | +foldersAjaxSearch: |
| 182 | + path: /folder/search |
| 183 | + methods: [GET] |
| 184 | + defaults: |
| 185 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxFoldersController::searchAction |
| 186 | + _format: json |
| 187 | + |
| 188 | +customFormFieldAjaxEdit: |
| 189 | + path: /custom-forms/fields/edit/{customFormFieldId} |
| 190 | + defaults: |
| 191 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxCustomFormFieldsController::editAction |
| 192 | + _format: json |
| 193 | + requirements: { customFormFieldId : "[0-9]+" } |
| 194 | + |
| 195 | + |
| 196 | +## Attribute values |
| 197 | +attributeValueAjaxEdit: |
| 198 | + path: /attribute-values/edit/{attributeValueId} |
| 199 | + defaults: |
| 200 | + _controller: RZ\Roadiz\RozierBundle\Controller\Ajax\AjaxAttributeValuesController::editAction |
| 201 | + _format: json |
| 202 | + requirements: { attributeValueId : "[0-9]+" } |
0 commit comments