Core API
4.2.2. ['interface'] section
Contains configuration for display and listing in various parts of the core backend:
|
Key |
Datatype |
Description |
|---|---|---|
|
showRecordFieldList |
string (list of fieldnames) |
Defines which fields are shown in the show-item dialog. Eg. 'doktype,title,alias,hidden,....' |
|
always_description |
boolean |
If set, the description/helpicons are always shown regardless of the configuration of the user. Works only in TCEforms and for tables loaded via t3lib_BEfunc::loadSingleTableDescription()
|
|
maxDBListItems |
integer |
Max number of items shown in the List module |
|
maxSingleDBListItems |
integer |
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 (in t3lib/stddb/tables.php):
'interface' => Array (
'showRecordFieldList' => 'doktype,title',
'maxDBListItems' => 30,
'maxSingleDBListItems' => 50
),
