You are here

class PlanListBuilder in farmOS 2.x

Defines a class to build a listing of plan entities.

Hierarchy

  • class \Drupal\plan\PlanListBuilder extends \Drupal\entity\BulkFormEntityListBuilder

Expanded class hierarchy of PlanListBuilder

File

modules/core/plan/src/PlanListBuilder.php, line 13

Namespace

Drupal\plan
View source
class PlanListBuilder extends BulkFormEntityListBuilder {

  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['id'] = $this
      ->t('Plan ID');
    $header['label'] = $this
      ->t('Label');
    $header['type'] = $this
      ->t('Type');
    return $header + parent::buildHeader();
  }

  /**
   * {@inheritdoc}
   */
  public function buildRow(EntityInterface $entity) {

    /** @var \Drupal\plan\Entity\PlanInterface $entity */
    $row['id'] = [
      '#markup' => $entity
        ->id(),
    ];
    $row['name'] = $entity
      ->toLink($entity
      ->label(), 'canonical')
      ->toRenderable();
    $row['type'] = [
      '#markup' => $entity
        ->getBundleLabel(),
    ];
    return $row + parent::buildRow($entity);
  }

}

Members