You are here

BoardListBuilder.php in Drupal PM (Project Management) 4.x

Namespace

Drupal\pm_board

File

modules/pm_board/src/BoardListBuilder.php
View source
<?php

namespace Drupal\pm_board;

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

/**
 * Defines a class to build a listing of Board entities.
 *
 * @ingroup pm_board
 */
class BoardListBuilder extends EntityListBuilder {

  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['id'] = $this
      ->t('Board ID');
    $header['name'] = $this
      ->t('Name');
    return $header + parent::buildHeader();
  }

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

    /** @var \Drupal\pm_board\Entity\Board $entity */
    $row['id'] = $entity
      ->id();
    $row['name'] = Link::createFromRoute($entity
      ->label(), 'entity.pm_board.edit_form', [
      'pm_board' => $entity
        ->id(),
    ]);
    return $row + parent::buildRow($entity);
  }

}

Classes

Namesort descending Description
BoardListBuilder Defines a class to build a listing of Board entities.