public function ActionListController::buildHeader

Builds the header row for the entity listing.

Return value

array A render array structure of header strings.

Overrides EntityListController::buildHeader

See also

Drupal\Core\Entity\EntityListController::render()

File

drupal/core/modules/action/lib/Drupal/action/ActionListController.php, line 99
Contains \Drupal\action\ActionListController.

Class

ActionListController
Provides a listing of Actions.

Namespace

Drupal\action

Code

public function buildHeader() {
  $header = array(
    'type' => t('Action type'),
    'label' => t('Label'),
    'operations' => t('Operations'),
  );
  return $header;
}