You are here

public function FormAssemblyEntityListBuilder::buildHeader in FormAssembly 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/FormAssemblyEntityListBuilder.php, line 29

Class

FormAssemblyEntityListBuilder
Defines a class to build a listing of FormAssembly Form entities.

Namespace

Drupal\formassembly

Code

public function buildHeader() {
  $header['id'] = $this
    ->t('FormAssembly Form ID');
  $header['name'] = $this
    ->t('Name');
  $header['status'] = $this
    ->t('Status');
  return $header + parent::buildHeader();
}