CommentTypeListBuilder::buildHeader

public CommentTypeListBuilder::buildHeader()

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

core/modules/comment/src/CommentTypeListBuilder.php, line 31

Class

CommentTypeListBuilder
Defines a class to build a listing of comment type entities.

Namespace

Drupal\comment

Code

public function buildHeader() {
  $header['type'] = t('Comment type');
  $header['description'] = t('Description');
  return $header + parent::buildHeader();
}
doc_Drupal
2016-10-29 08:51:22
Comments
Leave a Comment

Please login to continue.