public function FacConfigListBuilder::buildHeader in Fast Autocomplete 8
Builds the header row for the entity listing.
Return value
array A render array structure of header strings.
Overrides EntityListBuilder::buildHeader
See also
\Drupal\Core\Entity\EntityListBuilder::render()
File
- src/
Controller/ FacConfigListBuilder.php, line 54
Class
- FacConfigListBuilder
- Provides a listing of FacConfig.
Namespace
Drupal\fac\ControllerCode
public function buildHeader() {
$header['label'] = $this
->t('Name');
$header['id'] = $this
->t('Machine name');
$header['search_plugin'] = $this
->t('Search plugin');
$header['input_selectors'] = $this
->t('Input selectors');
$header['status'] = $this
->t('Status');
return $header + parent::buildHeader();
}