Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
[TASK] Remove version 12 change information (#575)
Browse files Browse the repository at this point in the history
Releases: main, 13.4

Co-authored-by: lina.wolf <[email protected]>
  • Loading branch information
github-actions[bot] and linawolf authored Nov 18, 2024
1 parent 982495d commit a0d4399
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 122 deletions.
36 changes: 0 additions & 36 deletions Documentation/PageTsconfig/Mod/WebInfo.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <useroptions-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 <useroptions-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`.
52 changes: 0 additions & 52 deletions Documentation/PageTsconfig/Mod/WebTs.rst

This file was deleted.

2 changes: 0 additions & 2 deletions Documentation/PageTsconfig/Options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ Example: Exclude two backend layouts from drop down selector
defaultUploadFolder
-------------------

.. versionadded:: 12.3

.. confval:: defaultUploadFolder
:name: options-defaultUploadFolder
:type: string
Expand Down
7 changes: 3 additions & 4 deletions Documentation/PageTsconfig/TceForm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
7 changes: 0 additions & 7 deletions Documentation/PageTsconfig/TceMain.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions Documentation/PageTsconfig/Templates.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 10 additions & 10 deletions Documentation/UsingSetting/Conditions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand Down Expand Up @@ -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]
Expand Down
5 changes: 0 additions & 5 deletions Documentation/UsingSetting/PageTSconfig.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions Documentation/UsingSetting/Syntax.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <t3coreapi:sitehandling-settings>` can be used with the
TypoScript constant syntax in TSconfig.

Please note the following differences:

* There are differences in the :ref:`conditions <conditions>` that can be used.
* The general TypoScript syntax is described in
:ref:`TypoScript syntax <t3tsref:typoscript-syntax>`.

.. note::
:ref:`Site settings <t3coreapi:sitehandling-settings>` can be used with the
TypoScript constant syntax in TSconfig.

0 comments on commit a0d4399

Please sign in to comment.