public function TextFieldListBuilder::buildHeader in Apache Solr Config Generator 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/ TextFieldListBuilder.php, line 20 - Contains Drupal\apachesolr_confgen\Controller\TextFieldListBuilder.
Class
- TextFieldListBuilder
- Provides a listing of TextField.
Namespace
Drupal\apachesolr_confgen\ControllerCode
public function buildHeader() {
$header['label'] = $this
->t('TextField');
$header['id'] = $this
->t('Machine name');
return $header + parent::buildHeader();
}