You are here

BlockContentListBuilder.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/block_content/src/BlockContentListBuilder.php

File

core/modules/block_content/src/BlockContentListBuilder.php
View source
<?php

/**
 * @file
 * Contains \Drupal\block_content\BlockContentListBuilder.
 */
namespace Drupal\block_content;

use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;

/**
 * Defines a class to build a listing of custom block entities.
 *
 * @see \Drupal\block_content\Entity\BlockContent
 */
class BlockContentListBuilder extends EntityListBuilder {

  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['label'] = t('Block description');
    return $header + parent::buildHeader();
  }

  /**
   * {@inheritdoc}
   */
  public function buildRow(EntityInterface $entity) {
    $row['label'] = $entity
      ->label();
    return $row + parent::buildRow($entity);
  }

  /**
   * {@inheritdoc}
   */
  public function getDefaultOperations(EntityInterface $entity) {
    $operations = parent::getDefaultOperations($entity);
    if (isset($operations['edit'])) {
      $operations['edit']['query']['destination'] = $entity
        ->url('collection');
    }
    return $operations;
  }

}

Classes

Namesort descending Description
BlockContentListBuilder Defines a class to build a listing of custom block entities.