Skip to content

Commit 4779ca5

Browse files
[FEATURE] Rename top-level module "list" to "records" (#6254)
References: TYPO3-Documentation/Changelog-To-Doc#1505 Releases: main Co-authored-by: Lina Wolf <[email protected]>
1 parent bbfe024 commit 4779ca5

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
lines changed

Documentation/Administration/PermissionsManagement/SettingUpBackendGroups/Index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ for listing and editing, and specific fields in backend forms.
4545

4646
Ensure ACL groups grant essential permissions for specific elements management.
4747
For example, users managing custom record types (e.g., Article, Product) should list,
48-
create, and access records, possibly via a custom backend module or the List module.
48+
create, and access records, possibly via a custom backend module or the :guilabel:`Content > Records` module.
4949
It's crucial to equip such a group with access to:
5050

5151
* Listing and modifying the table of a records
5252
* Editing fields within the record that align with this group's purpose
53-
* Accessing the core List module or custom module for records management
53+
* Accessing the core :guilabel:`Content > Records` module or custom module for records management
5454
* If there are relations from this record, for example, to files, it should also permit uploading, selecting, and processing these files
5555

5656
Therefore, a group can be seen as an independent unit that provides complete

Documentation/ApiOverview/Backend/BackendModules/BackendGUI.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Navigation frame
4646
The current location (i.e. page or frame) is carried over between
4747
navigation frames when changing modules. This means, for example, that
4848
when you move from the :guilabel:`Content > Page` module to the
49-
:guilabel:`Content > List` module, the same page stays selected in the page tree.
49+
:guilabel:`Content > Records` module, the same page stays selected in the page tree.
5050

5151
DocHeader
5252
This part is always located above the Content area. It will generally

Documentation/ApiOverview/Backend/BackendUserObject.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ the access list by this function call:
3939
4040
$GLOBALS['BE_USER']->check('modules', 'web_list');
4141
42-
Here access to the module :guilabel:`Content > List` is checked.
42+
Here access to the module :guilabel:`Content > Records` is checked.
4343

4444

4545
.. index::

Documentation/ApiOverview/Database/DatabaseStructure/Index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Managed tables
3838
==============
3939

4040
Defined in the :ref:`TCA <t3tca:start>` and, by default, editable in the
41-
:guilabel:`Content > List` module. TYPO3 derives database schemas from the TCA
41+
:guilabel:`Content > Records` module. TYPO3 derives database schemas from the TCA
4242
configuration. Required fields such as :sql:`uid` and :sql:`pid` are generated
4343
automatically.
4444

Documentation/ApiOverview/Database/DoctrineDbal/RestrictionBuilder/Index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ should be handled and displayed by the framework.
1616

1717
The `ctrl` section of a table's TCA array specifies optional framework-internal
1818
handling of soft deletes and language overlays: For instance, when a row is
19-
deleted in the backend using the page or list module, many tables are configured
19+
deleted in the backend using the page or :guilabel:`Content > Records` module, many tables are configured
2020
to not drop that row entirely from the table, but to set a field (often
2121
`deleted`) for that row from `0` to `1`. Similar mechanisms apply for start and
2222
end times, and to language and workspace overlays as well. See the

Documentation/ApiOverview/Events/Events/Backend/BeforeRecordDownloadIsExecutedEvent.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BeforeRecordDownloadIsExecutedEvent
1515

1616
The event :php:`TYPO3\CMS\Backend\RecordList\Event\BeforeRecordDownloadIsExecutedEvent`
1717
can be used to modify the result of a download / export initiated via
18-
the :guilabel:`Content > List` module.
18+
the :guilabel:`Content > Records` module.
1919

2020
The event lets you change both the main part and the header of the data file.
2121
You can use it to edit data to follow GDPR rules, change or translate data,

Documentation/ApiOverview/Events/Events/Backend/BeforeRecordDownloadPresetsAreDisplayedEvent.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ BeforeRecordDownloadPresetsAreDisplayedEvent
1010

1111
The event :php:`TYPO3\CMS\Backend\RecordList\Event\BeforeRecordDownloadPresetsAreDisplayedEvent`
1212
can be used to manipulate the list of available download presets in
13-
the :guilabel:`Content > List` module.
13+
the :guilabel:`Content > Records` module.
1414

1515
See :confval:`mod.web_list.downloadPresets <t3tsref:mod-web-list-downloadpresets>`
1616
on how to configure download presets.

Documentation/ApiOverview/RequestLifeCycle/RequestAttributes/Target.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Target
99
======
1010

1111
The :php:`target` backend request attribute provides the target action of a
12-
backend route. For instance, the target of the :guilabel:`Content > List` module
12+
backend route. For instance, the target of the :guilabel:`Content > Records` module
1313
is set to :php:`TYPO3\CMS\Recordlist\Controller\RecordListController::mainAction`.
1414

1515
Example:

Documentation/ApiOverview/SiteHandling/AddLanguages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ should behave. New languages for a site can also be configured in this module.
1313
When the backend shows the list of available languages, the list of languages is
1414
limited to the languages defined by the sites module. For instance, the
1515
languages are used in the page module language selector, when editing records
16-
or in the list module.
16+
or in the :guilabel:`Content > Records` module.
1717

1818
The language management provides the ability to hide a language on the frontend
1919
while allowing it on the backend. This enables editors to start translating

Documentation/CodeSnippets/Events/Backend/BeforeRecordDownloadIsExecutedEvent.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
.. php:class:: BeforeRecordDownloadIsExecutedEvent
55
6-
Listeners to this event are able to manipulate the download of records, usually triggered via Web > List.
6+
Listeners to this event are able to manipulate the download of records, usually triggered via Content > Records.
77

88
.. php:method:: getHeaderRow()
99
:returns: `array`

0 commit comments

Comments
 (0)