public function Jw_playerListBuilder::buildHeader in JW Player 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/
Jw_playerListBuilder.php, line 16
Class
- Jw_playerListBuilder
- Provides a listing of presets.
Namespace
Drupal\jw_playerCode
public function buildHeader() {
$header['label'] = $this
->t('Name');
$header['description'] = $this
->t('Description');
$header['settings'] = $this
->t('Settings');
return $header + parent::buildHeader();
}