You are here

BlockGroupContentListBuilder.php in Block Group 8

Namespace

Drupal\blockgroup

File

src/BlockGroupContentListBuilder.php
View source
<?php

namespace Drupal\blockgroup;

use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;

/**
 * Provides a listing of Block group content entities.
 */
class BlockGroupContentListBuilder extends ConfigEntityListBuilder {

  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['label'] = $this
      ->t('Block group content');
    $header['id'] = $this
      ->t('Machine name');
    return $header + parent::buildHeader();
  }

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

    // You probably want a few more properties here...
    return $row + parent::buildRow($entity);
  }

}

Classes

Namesort descending Description
BlockGroupContentListBuilder Provides a listing of Block group content entities.