Skip to content

Commit 622abd0

Browse files
authored
[DOCS] Use correct backend route name in extbase example (#5393)
* [DOCS] Use correct backend route name in extbase example * [DOCS] Adjust example backend uris in extbase example
1 parent c0505e6 commit 622abd0

File tree

1 file changed

+4
-4
lines changed
  • Documentation/ApiOverview/Backend/BackendModules/ModuleConfiguration

1 file changed

+4
-4
lines changed

Documentation/ApiOverview/Backend/BackendModules/ModuleConfiguration/Index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,17 +305,17 @@ Extbase module configuration options
305305
This leads to the following URLs:
306306

307307
* :samp:`https://example.com/typo3/module/web/ExtkeyExample`
308-
* :samp:`https://example.com/typo3/module/web/ExtkeyExample/MyModuleController/list`
309-
* :samp:`https://example.com/typo3/module/web/ExtkeyExample/MyModuleController/detail`
308+
* :samp:`https://example.com/typo3/module/web/ExtkeyExample/MyModule/list`
309+
* :samp:`https://example.com/typo3/module/web/ExtkeyExample/MyModule/detail`
310310

311311
The route identifier of corresponding routes is registered with similar
312312
syntax as :ref:`standard backend modules <backend-modules-api-default>`:
313313
:php:`<module_identifier>.<controller>_<action>`. Above configuration will
314314
therefore register the following routes:
315315

316316
* `web_ExtkeyExample`
317-
* `web_ExtkeyExample.MyModuleController_list`
318-
* `web_ExtkeyExample.MyModuleController_detail`
317+
* `web_ExtkeyExample.MyModule_list`
318+
* `web_ExtkeyExample.MyModule_detail`
319319

320320
Debug the module configuration
321321
===============================

0 commit comments

Comments
 (0)