Attention

TYPO3 v8 has reached its end-of-life March 31st, 2020 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']

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' => [
    'showRecordFieldList' => 'doktype,title,alias,...,backend_layout,backend_layout_next_level',
    '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.

showRecordFieldList

Datatype

string (list of field names)

Description

Defines which fields are shown in the show-item "info" 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.

If not specified, the info dialog shows only a couple of default fields, it is good practice to at least add a list of main record information fields here.