Attention

TYPO3 v7 has reached its end-of-life November 30th, 2018 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.

There is no further ELTS support. It is recommended that you upgrade your project and use a supported version of TYPO3.

['interface'] section

Contains configuration for display and listing in various parts of the core backend.

Properties

Property

Data Type

maxDBListItems

integer

maxSingleDBListItems

integer

showRecordFieldList

string

Property details

showRecordFieldList

Key

showRecordFieldList

Datatype

string

(list of field names)

Description

Defines which fields are shown in the show-item dialog. For example 'doktype,title,alias,hidden,...'. To see that dialog go to the list module in the backend and click on the icon of a record in the right pane. Then choose 'info' in the popup menu.

maxDBListItems

Key

maxDBListItems

Datatype

integer

Description

Max number of items shown in the List module

maxSingleDBListItems

Key

maxSingleDBListItems

Datatype

integer

Description

Max number of items shown in the List module, if this table is listed in Extended mode (listing only a single table)

Example

This is how the "pages" table is configured for these settings:

'interface' => array(
        'showRecordFieldList' => 'doktype,title,alias,...,backend_layout,backend_layout_next_level',
        'maxDBListItems' => 30,
        'maxSingleDBListItems' => 50
),