public function PresentationListBuilder::buildHeader in Isotope (with Masonry and Packery) 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/ PresentationListBuilder.php, line 20 - Contains \Drupal\isotope\Controller\PresentationListBuilder.
Class
- PresentationListBuilder
- Provides a listing of Presentations.
Namespace
Drupal\isotope\ControllerCode
public function buildHeader() {
$header['label'] = $this
->t('Presentation');
$header['id'] = $this
->t('Machine name');
return $header + parent::buildHeader();
}