public function PopupOnLoadListBuilder::buildHeader in Popup On Load 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/
PopupOnLoadListBuilder.php, line 19
Class
- PopupOnLoadListBuilder
- Defines a class to build a listing of Popup On Load entities.
Namespace
Drupal\popup_onloadCode
public function buildHeader() {
$header['name'] = $this
->t('Name');
return $header + parent::buildHeader();
}