searchFields

searchFields
Path

$GLOBALS['TCA'][$table]['ctrl']

type

string

Scope

Search

Comma-separated list of fields from the table that will be included when searching for records in the TYPO3 backend. No record from a table will ever be found if that table does not have searchFields defined. Only fields of the following TCA types are searchable:

Adding fields of different types to searchFields has no effect.

There are more fine grained controls per column, see the documentation of the "search" key of any type in Field types (config > type).

Examples

Example from "tt_content" table:

'ctrl' => [
   'searchFields' => 'header,header_link,subheader,bodytext,pi_flexform',
   ...
],
Copied!