-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [TASK] List common configuration file locations as files This uses the new rst feature TYPO3-Documentation/render-guides#898 Releases: main, 13.4, 12.4 * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/Backend/Index.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/Backend/Index.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/ContentSecurityPolicies.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/Extbase/Index.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/ServicesYaml.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/ServicesYaml.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/ServicesYaml.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/RequestMiddlewaresPhp.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/TsConfig/Index.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/TsConfig/Index.rst * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/TypoScript/Index.rst * Apply suggestions from code review * Apply suggestions from code review * Update Documentation/ExtensionArchitecture/FileStructure/Configuration/TCA/Index.rst --------- Co-authored-by: Lina Wolf <[email protected]>
- Loading branch information
Showing
13 changed files
with
224 additions
and
170 deletions.
There are no files selected for viewing
79 changes: 41 additions & 38 deletions
79
Documentation/ExtensionArchitecture/FileStructure/Configuration/Backend/Index.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,63 @@ | ||
.. include:: /Includes.rst.txt | ||
.. index:: | ||
Extension development; Configuration/Backend | ||
Path; EXT:{extkey}/Configuration/Backend | ||
:navigation-title: Backend | ||
|
||
.. _extension-configuration-backend: | ||
.. include:: /Includes.rst.txt | ||
.. index:: | ||
Extension development; Configuration/Backend | ||
Path; EXT:{extkey}/Configuration/Backend | ||
|
||
=============== | ||
:file:`Backend` | ||
=============== | ||
.. _extension-configuration-backend: | ||
|
||
======================================== | ||
Extension folder `Configuration/Backend` | ||
======================================== | ||
|
||
The folder :file:`EXT:my_extension/Configuration/Backend/` may contain | ||
configuration that is important within the TYPO3 Backend. | ||
|
||
All files in this directory are automatically included during the TYPO3 | ||
bootstrap. | ||
|
||
.. _extension-configuration-backend-ajaxroutes: | ||
|
||
:file:`AjaxRoutes.php` | ||
====================== | ||
|
||
Complete path: :file:`EXT:my_extension/Configuration/Backend/AjaxRoutes.php` | ||
|
||
In this file routes for Ajax requests that should be used in the backend can | ||
be defined. | ||
|
||
Read more about :ref:`Using Ajax in the backend <ajax-backend>`. | ||
|
||
.. include:: /CodeSnippets/Manual/Extension/Configuration/BackendAjaxRoutes.rst.txt | ||
.. _extension-configuration-backend-ajaxroutes: | ||
|
||
.. typo3:file:: AjaxRoutes.php | ||
:scope: extension | ||
:path: /Configuration/Backend/ | ||
:regex: /^.*Configuration\/Backend\/AjaxRoutes\.php$/ | ||
:shortDescription: Defines routes for backend Ajax requests | ||
|
||
.. _extension-configuration-backend-routes: | ||
In this file routes for Ajax requests that should be used in the backend can | ||
be defined. | ||
|
||
:file:`Routes.php` | ||
================== | ||
Read more about :ref:`Using Ajax in the backend <ajax-backend>`. | ||
|
||
Complete path: :file:`EXT:my_extension/Configuration/Backend/Routes.php` | ||
.. include:: /CodeSnippets/Manual/Extension/Configuration/BackendAjaxRoutes.rst.txt | ||
|
||
This file maps from paths used in the backend to the controller that should | ||
be used. | ||
.. _extension-configuration-backend-routes: | ||
|
||
Most backend routes defined in the TYPO3 core can be found in the following | ||
file, which you can use as example: | ||
.. typo3:file:: Routes.php | ||
:scope: extension | ||
:path: /Configuration/Backend/ | ||
:regex: /^.*Configuration\/Backend\/Routes\.php$/ | ||
:shortDescription: Defines routes for backend controllers | ||
|
||
:t3src:`backend/Configuration/Backend/Routes.php` | ||
This file maps the URI paths used in the backend to the controller that should | ||
be used. | ||
|
||
Read more about :ref:`Backend routing <backend-routing>`. | ||
Most backend routes defined in the TYPO3 core can be found in the following | ||
file, which you can use as example: | ||
|
||
:t3src:`backend/Configuration/Backend/Routes.php` | ||
|
||
.. _extension-configuration-backend-modules: | ||
Read more about :ref:`Backend routing <backend-routing>`. | ||
|
||
:file:`Modules.php` | ||
==================== | ||
.. _extension-configuration-backend-modules: | ||
|
||
Complete path: :file:`EXT:my_extension/Configuration/Backend/Modules.php`. | ||
.. typo3:file:: Modules.php | ||
:scope: extension | ||
:path: /Configuration/Backend/ | ||
:regex: /^.*Configuration\/Backend\/Modules\.php$/ | ||
:shortDescription: Defines the backend module configuration | ||
|
||
This file is used for the | ||
:ref:`Backend module configuration <backend-modules-configuration>`. See that | ||
chapter for details. | ||
This file is used for the | ||
:ref:`Backend module configuration <backend-modules-configuration>`. See that | ||
chapter for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
Documentation/ExtensionArchitecture/FileStructure/Configuration/Extbase/Index.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 5 additions & 3 deletions
8
Documentation/ExtensionArchitecture/FileStructure/Configuration/Index.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 22 additions & 8 deletions
30
Documentation/ExtensionArchitecture/FileStructure/Configuration/ServicesYaml.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.