You are here

public function PathautoPatternListBuilder::buildHeader in Pathauto 8

Builds the header row for the entity listing.

Return value

array A render array structure of header strings.

Overrides DraggableListBuilder::buildHeader

See also

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

File

src/PathautoPatternListBuilder.php, line 28

Class

PathautoPatternListBuilder
Provides a listing of Pathauto pattern entities.

Namespace

Drupal\pathauto

Code

public function buildHeader() {
  $header['label'] = $this
    ->t('Label');
  $header['pattern'] = $this
    ->t('Pattern');
  $header['type'] = $this
    ->t('Pattern type');
  $header['conditions'] = $this
    ->t('Conditions');
  return $header + parent::buildHeader();
}