You are here

public function MiconContentTypeListBuilder::buildHeader in Micon 2.x

Same name and namespace in other branches
  1. 8 micon_content_type/src/MiconContentTypeListBuilder.php \Drupal\micon_content_type\MiconContentTypeListBuilder::buildHeader()

Builds the header row for the entity listing.

Return value

array A render array structure of header strings.

Overrides NodeTypeListBuilder::buildHeader

See also

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

File

micon_content_type/src/MiconContentTypeListBuilder.php, line 16

Class

MiconContentTypeListBuilder
Provides a listing of ContentType.

Namespace

Drupal\micon_content_type

Code

public function buildHeader() {
  $header['icon'] = t('Icon');
  return $header + parent::buildHeader();
}