From a0d4399bc1ac73ec1f0da77ef8cf61274511ed3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 10:51:30 +0100 Subject: [PATCH] [TASK] Remove version 12 change information (#575) Releases: main, 13.4 Co-authored-by: lina.wolf --- Documentation/PageTsconfig/Mod/WebInfo.rst | 36 -------------- Documentation/PageTsconfig/Mod/WebTs.rst | 52 --------------------- Documentation/PageTsconfig/Options.rst | 2 - Documentation/PageTsconfig/TceForm.rst | 7 ++- Documentation/PageTsconfig/TceMain.rst | 7 --- Documentation/PageTsconfig/Templates.rst | 2 - Documentation/UsingSetting/Conditions.rst | 20 ++++---- Documentation/UsingSetting/PageTSconfig.rst | 5 -- Documentation/UsingSetting/Syntax.rst | 8 ++-- 9 files changed, 17 insertions(+), 122 deletions(-) delete mode 100644 Documentation/PageTsconfig/Mod/WebTs.rst diff --git a/Documentation/PageTsconfig/Mod/WebInfo.rst b/Documentation/PageTsconfig/Mod/WebInfo.rst index c55584b0..06198038 100644 --- a/Documentation/PageTsconfig/Mod/WebInfo.rst +++ b/Documentation/PageTsconfig/Mod/WebInfo.rst @@ -65,39 +65,3 @@ Example: Override the field definitions in the info module fields = title,uid,table_tt_content,table_fe_users } } - -.. index:: - web_info.menu.function - Module menu; Info -.. _pageblindingfunctionmenuoptions-webinfo: - -menu.function -============= - -.. versionchanged:: 12.0 - The page TSconfig option :tsconfig:`mod.web_info.menu.function` has been removed - with TYPO3 v12.0. Use **user** TSconfig option - :ref:`options.hideModules ` instead. - -.. _pageblindingfunctionmenuoptions-webinfo-migration: - -Migration from menu.function to options.hideModules ---------------------------------------------------- - -Migrate former usage of :tsconfig:`mod.web_info.menu.function` in **page** TSconfig -to option :ref:`options.hideModules `. - -.. code-block:: typoscript - :caption: **Page** TSconfig, for example EXT:my_extension/Configuration/page.tsconfig - - # before - mod.web_info.menu.function.TYPO3\CMS\Info\Controller\TranslationStatusController = 0 - -.. code-block:: typoscript - :caption: **User** TSconfig, for example EXT:my_extension/Configuration/user.tsconfig - - # after - options.hideModules := addToList(web_info_translations) - -See also :ref:`setting-user-tsconfig`. You can find the names of all -TypoScript modules in :t3src:`info/Configuration/Backend/Modules.php`. diff --git a/Documentation/PageTsconfig/Mod/WebTs.rst b/Documentation/PageTsconfig/Mod/WebTs.rst deleted file mode 100644 index de90483b..00000000 --- a/Documentation/PageTsconfig/Mod/WebTs.rst +++ /dev/null @@ -1,52 +0,0 @@ -:orphan: -.. include:: /Includes.rst.txt - -====== -web_ts -====== - -.. versionchanged:: 12.0 - The :guilabel:`Web > Template` module has been replaced by the - :guilabel:`Web > TypoScript` module. The only option in this namespace - has been removed. - -.. contents:: - :local: - -.. index:: - web_info.menu.function - Module menu; Template -.. _pageblindingfunctionmenuoptions-webts: - -menu.function -============= - -.. versionchanged:: 12.0 - The TSconfig option :tsconfig:`mod.web_ts.menu.function` has been removed - with TYPO3 v12.0. Use **user** TSconfig option - :ref:`options.hideModules ` instead. - -.. _pageblindingfunctionmenuoptions-webts-migration: - -Migration from menu.function to options.hideModules ---------------------------------------------------- - -Migrate former usage of :tsconfig:`mod.web_ts.menu.function` in **page** TSconfig -to option :ref:`options.hideModules `. - -.. code-block:: typoscript - :caption: **Page** TSconfig, for example EXT:my_extension/Configuration/page.tsconfig - - # before - mod.web_ts.menu.function { - TYPO3\CMS\Tstemplate\Controller\TemplateAnalyzerModuleFunctionController = 0 - } - -.. code-block:: typoscript - :caption: **User** TSconfig, for example EXT:my_extension/Configuration/user.tsconfig - - # after - options.hideModules := addToList(web_typoscript_analyzer) - -See also :ref:`setting-user-tsconfig`. You can find the names of all -TypoScript modules in :t3src:`tstemplate/Configuration/Backend/Modules.php`. diff --git a/Documentation/PageTsconfig/Options.rst b/Documentation/PageTsconfig/Options.rst index 13a86b1d..64366051 100644 --- a/Documentation/PageTsconfig/Options.rst +++ b/Documentation/PageTsconfig/Options.rst @@ -61,8 +61,6 @@ Example: Exclude two backend layouts from drop down selector defaultUploadFolder ------------------- -.. versionadded:: 12.3 - .. confval:: defaultUploadFolder :name: options-defaultUploadFolder :type: string diff --git a/Documentation/PageTsconfig/TceForm.rst b/Documentation/PageTsconfig/TceForm.rst index 55d2237b..20b551a1 100644 --- a/Documentation/PageTsconfig/TceForm.rst +++ b/Documentation/PageTsconfig/TceForm.rst @@ -92,10 +92,9 @@ addItems The subkey :typoscript:`icon` will allow to add your own icons to new values. - .. versionadded:: 12.1 - The subkey :typoscript:`group` can be used to insert a new element into an - existing select item group by settings the value to the group identifier. - The grouping is usually displayed in select fields with groups available. + The subkey :typoscript:`group` can be used to insert a new element into an + existing select item group by settings the value to the group identifier. + The grouping is usually displayed in select fields with groups available. This property is available for various levels: diff --git a/Documentation/PageTsconfig/TceMain.rst b/Documentation/PageTsconfig/TceMain.rst index 933f1293..422123f9 100644 --- a/Documentation/PageTsconfig/TceMain.rst +++ b/Documentation/PageTsconfig/TceMain.rst @@ -242,13 +242,6 @@ linkHandler Define the order of how the various tabs are displayed in the link browser. - .. versionchanged:: 12.0 - Due to the integration of EXT:recordlist into EXT:backend the namespace of - LinkHandlers has changed from :php:`TYPO3\CMS\Recordlist\LinkHandler` to - :php:`TYPO3\CMS\Backend\LinkHandler`. - For TYPO3 v12 the moved classes are available as an alias under the old - namespace to allow extensions to be compatible with TYPO3 v11 and v12. - .. _pagetcemaintables-linkhandler-example: Example: Display an additional tab in the linkbrowser diff --git a/Documentation/PageTsconfig/Templates.rst b/Documentation/PageTsconfig/Templates.rst index 37c54296..ef8e9ca0 100644 --- a/Documentation/PageTsconfig/Templates.rst +++ b/Documentation/PageTsconfig/Templates.rst @@ -9,8 +9,6 @@ templates ========= -.. versionadded:: 12.0 - All Fluid templates rendered by backend controllers can be overridden with own templates on a per-file basis. The feature is available for basically all core backend modules, as well as the backend main frame templates. Exceptions are diff --git a/Documentation/UsingSetting/Conditions.rst b/Documentation/UsingSetting/Conditions.rst index 9343e613..f913b3d5 100644 --- a/Documentation/UsingSetting/Conditions.rst +++ b/Documentation/UsingSetting/Conditions.rst @@ -561,17 +561,17 @@ typo3.version :name: condition-typo3-version :type: string - TYPO3 version (e.g. 12.4.0-dev) + TYPO3 version (e.g. 13.4.0-dev) .. _condition-typo3-version-example: -Example: Condition only applies in an exact TYPO3 version like 12.4.0 +Example: Condition only applies in an exact TYPO3 version like 13.4.0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. code-block:: typoscript :caption: EXT:site_package/Configuration/page.tsconfig - [typo3.version == "12.4.0"] + [typo3.version == "13.4.0"] // Your settings go here [END] @@ -586,18 +586,18 @@ typo3.branch :name: condition-typo3-branch :type: string - TYPO3 branch (e.g. 12.4) + TYPO3 branch (e.g. 13.4) .. _condition-typo3-branch-example: -Example: Condition applies in all TYPO3 versions of a branch like 12.4 +Example: Condition applies in all TYPO3 versions of a branch like 13.4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. code-block:: typoscript :caption: EXT:site_package/Configuration/page.tsconfig - [typo3.branch == "12.4"] + [typo3.branch == "13.4"] // Your settings go here [END] @@ -770,14 +770,14 @@ Example: Condition applies if the current TYPO3 version matches a pattern .. code-block:: typoscript :caption: EXT:site_package/Configuration/page.tsconfig - # True if current version is 12.4.x - [compatVersion("12.4")] + # True if current version is 13.4.x + [compatVersion("13.4")] // Your settings go here [END] - [compatVersion("12.4.0")] + [compatVersion("13.4.0")] // Your settings go here [END] - [compatVersion("12.4.1")] + [compatVersion("13.4.1")] // Your settings go here [END] diff --git a/Documentation/UsingSetting/PageTSconfig.rst b/Documentation/UsingSetting/PageTSconfig.rst index 367b06be..18eb767b 100644 --- a/Documentation/UsingSetting/PageTSconfig.rst +++ b/Documentation/UsingSetting/PageTSconfig.rst @@ -34,11 +34,6 @@ this is not recommended anymore. Setting the page TSconfig globally ================================== -.. versionadded:: 12.0 - Starting with TYPO3 v12.0 page TSconfig in a file named - :file:`Configuration/page.tsconfig` in an extension is automatically - loaded during build time. - Global page TSconfig should be stored within an extension, usually a sitepackage extension. The content of the file :file:`Configuration/page.tsconfig` within an extension is automatically loaded during build time. diff --git a/Documentation/UsingSetting/Syntax.rst b/Documentation/UsingSetting/Syntax.rst index 77483249..f63fd9c8 100644 --- a/Documentation/UsingSetting/Syntax.rst +++ b/Documentation/UsingSetting/Syntax.rst @@ -10,12 +10,12 @@ While the objects, properties and conditions are different, the *syntax* of TSconfig is basically the same as it is for TypoScript in frontend TypoScript templates. -.. versionchanged:: 12.4 - :ref:`Site settings ` can be used with the - TypoScript constant syntax in TSconfig. - Please note the following differences: * There are differences in the :ref:`conditions ` that can be used. * The general TypoScript syntax is described in :ref:`TypoScript syntax `. + +.. note:: + :ref:`Site settings ` can be used with the + TypoScript constant syntax in TSconfig.