public ConfigTranslationBlockListBuilder::buildHeader()
Builds the header row for the entity listing.
Return value
array A render array structure of header strings.
Overrides ConfigTranslationEntityListBuilder::buildHeader
See also
\Drupal\Core\Entity\EntityListBuilder::render()
File
- core/modules/config_translation/src/Controller/ConfigTranslationBlockListBuilder.php, line 84
Class
- ConfigTranslationBlockListBuilder
- Defines the config translation list builder for blocks.
Namespace
Drupal\config_translation\Controller
Code
1 2 3 4 5 6 7 | public function buildHeader() { $header [ 'label' ] = $this ->t( 'Block' ); $header [ 'theme' ] = $this ->t( 'Theme' ); $header [ 'category' ] = $this ->t( 'Category' ); $header [ 'operations' ] = $this ->t( 'Operations' ); return $header ; } |
Please login to continue.