You are here

public function EntitySubqueueListBuilder::buildHeader in Entityqueue 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/EntitySubqueueListBuilder.php, line 89

Class

EntitySubqueueListBuilder
Defines a class that builds a listing of entity subqueues.

Namespace

Drupal\entityqueue

Code

public function buildHeader() {
  $header['label'] = $this
    ->t('Subqueue');
  $header['items'] = $this
    ->t('Items');
  return $header + parent::buildHeader();
}