Attention
TYPO3 v10 has reached end-of-life as of April 30th 2023 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v10 here: TYPO3 ELTS.
['interface']¶
Introduction¶
The ['interface'] section contains configuration for display and listing in various parts of the backend. Extension authors often ignore these settings and a lot of extensions in the wild don't use that array part.
Examples¶
This is how the "pages" table is configured for these settings:
'interface' => [
'maxDBListItems' => 30,
'maxSingleDBListItems' => 50
],
maxDBListItems¶
- Datatype
integer
- Description
Max number of items shown in the List module. Defaults to 20 if not specified.
maxSingleDBListItems¶
- Datatype
integer
- Description
Maximum number of items shown in the List module, if this table is listed in extended mode (listing only a single table). Defaults to 100 if not specified.