You are here

FeedbackMessageTypeListBuilder.php in Feedback 3.x

Namespace

Drupal\feedback

File

src/FeedbackMessageTypeListBuilder.php
View source
<?php

namespace Drupal\feedback;

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

/**
 * Provides a listing of Feedback message type entities.
 */
class FeedbackMessageTypeListBuilder extends ConfigEntityListBuilder {

  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['label'] = $this
      ->t('Feedback message type');
    $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
FeedbackMessageTypeListBuilder Provides a listing of Feedback message type entities.