You are here

public function EntityformTypeListBuilder::buildHeader in Entityform 8.3

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/EntityformTypeListBuilder.php, line 62
Contains \Drupal\entityform\EntityformTypeListBuilder.

Class

EntityformTypeListBuilder
Defines a class to build a listing of node type entities.

Namespace

Drupal\entityform

Code

public function buildHeader() {
  $header['title'] = t('Name');
  $header['description'] = array(
    'data' => t('Description'),
    'class' => array(
      RESPONSIVE_PRIORITY_MEDIUM,
    ),
  );
  return $header + parent::buildHeader();
}