ActionListBuilder::buildHeader

public ActionListBuilder::buildHeader()

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

core/modules/action/src/ActionListBuilder.php, line 88

Class

ActionListBuilder
Defines a class to build a listing of action entities.

Namespace

Drupal\action

Code

public function buildHeader() {
  $header = array(
    'type' => t('Action type'),
    'label' => t('Label'),
  ) + parent::buildHeader();
  return $header;
}
doc_Drupal
2016-10-29 08:43:21
Comments
Leave a Comment

Please login to continue.