function BlockContentTypeListBuilder::buildRow

Same name and namespace in other branches
  1. 9 core/modules/block_content/src/BlockContentTypeListBuilder.php \Drupal\block_content\BlockContentTypeListBuilder::buildRow()
  2. 10 core/modules/block_content/src/BlockContentTypeListBuilder.php \Drupal\block_content\BlockContentTypeListBuilder::buildRow()
  3. 11.x core/modules/block_content/src/BlockContentTypeListBuilder.php \Drupal\block_content\BlockContentTypeListBuilder::buildRow()

Overrides EntityListBuilder::buildRow

File

core/modules/block_content/src/BlockContentTypeListBuilder.php, line 40

Class

BlockContentTypeListBuilder
Defines a class to build a listing of custom block type entities.

Namespace

Drupal\block_content

Code

public function buildRow(EntityInterface $entity) {
    $row['type'] = $entity->toLink(NULL, 'edit-form')
        ->toString();
    $row['description']['data']['#markup'] = $entity->getDescription();
    return $row + parent::buildRow($entity);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.