Skip to content

Commit 4fc9cb5

Browse files
linawolfAlagts
andauthored
Apply suggestions from code review
Co-authored-by: Sandra Erbel <[email protected]>
1 parent 23f1185 commit 4fc9cb5

File tree

1 file changed

+8
-10
lines changed
  • Documentation/Concepts/Backend/ListModule

1 file changed

+8
-10
lines changed

Documentation/Concepts/Backend/ListModule/Index.rst

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ The list module
99
Almost all data stored in the database is represented as a
1010
:ref:`Database record <t3coreapi:database-records>` in the TYPO3 backend.
1111

12-
The :guilabel:`Web > List` module can be used to view, edit, search and
13-
export database records.
12+
The respective backend module called :guilabel:`Web > List` module can be
13+
used to view, edit, search and export database records.
1414

1515
How to use the List module effectively for managing database records is
1616
described in-depth in
1717
:ref:`Editors Guide, Using the list module <t3editors:using-the-list-module-effectively>`.
1818

1919
For example there is a :ref:`Mass editing mode <t3editors:selective-editing>` and
20-
a :ref:`The clipboard <t3editors:clipboard>`.
20+
a :ref:`clipboard <t3editors:clipboard>`.
2121

2222
.. _list-module-tca:
2323

2424
Display of database records in the List module
2525
==============================================
2626

27-
How a database record type is displayed int the list module is determined by
27+
How a database record type is displayed in the list module is determined by
2828
:ref:`tca` and can be further configured by TSconfig. While TCA is always loaded
2929
globally Tsconfig can be included on a per-site or per-page level.
3030

@@ -40,7 +40,7 @@ Hide tables in the List module
4040
The TSconfig properties in section :ref:`web_list <t3tsconfig:pageweblist>`
4141
can be used to influence display and functionality of the List module.
4242

43-
For example you can hide the records of certain tables:
43+
For example you can hide the records of certain tables visible in the List module with:
4444

4545
.. code-block:: typoscript
4646
:caption: EXT:site_package/Configuration/page.tsconfig
@@ -49,9 +49,7 @@ For example you can hide the records of certain tables:
4949
hideTables := addToList(tx_my_table,tx_my_table2)
5050
}
5151
52-
We use the :ref:`Value modifications with ":="
53-
syntax <t3tsref:typoscript-syntax-syntax-value-modification>` to preserve values
54-
that where set by another extension.
52+
We use the :ref:`operator ":=" <t3tsref:typoscript-syntax-syntax-value-modification>` to add tables to a list that we want to hide.
5553

5654
.. _list-module-disableHideAtCopy:
5755

@@ -62,7 +60,7 @@ By default copied database records are inserted hidden and with `(copy X)`
6260
appended to their label. You can disable this default behaviour by
6361
setting :ref:`disablePrependAtCopy <t3tsconfig:pagetcemaintables-disableprependatcopy>`
6462
and :ref:`disableHideAtCopy <t3tsconfig:pagetcemaintables-disablehideatcopy>` for
65-
the affected table belonging to the record:
63+
the affected table belonging to the record to true like so:
6664

6765
.. code-block:: typoscript
6866
:caption: EXT:site_package/Configuration/page.tsconfig
@@ -78,7 +76,7 @@ Define defaults for certain fields
7876
----------------------------------
7977

8078
You can override the :confval:`default (TCA reference) <t3tca:input-default>`
81-
set globally in :ref:`tca` by setting a custom default value in TSconfig
79+
set globally in the :ref:`tca` by setting a custom default value in TSconfig
8280
:ref:`TCAdefaults <t3tsconfig:pageTsTcaDefaults>`:
8381

8482
.. code-block:: typoscript

0 commit comments

Comments
 (0)