You are here

public function CurrencyLocaleListBuilder::buildHeader in Currency 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/Entity/CurrencyLocale/CurrencyLocaleListBuilder.php, line 49

Class

CurrencyLocaleListBuilder
Provides a list builder for currency locales.

Namespace

Drupal\currency\Entity\CurrencyLocale

Code

public function buildHeader() {
  $row = array(
    'label' => $this
      ->t('Locale'),
  ) + parent::buildHeader();
  return $row;
}