You are here

QueueStorageEntityTypeListBuilder.php in Open Social 10.1.x

File

modules/custom/social_queue_storage/src/QueueStorageEntityTypeListBuilder.php
View source
<?php

namespace Drupal\social_queue_storage;

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

/**
 * Provides a listing of Queue storage entity type entities.
 */
class QueueStorageEntityTypeListBuilder extends ConfigEntityListBuilder {

  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['label'] = $this
      ->t('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();
    return $row + parent::buildRow($entity);
  }

}

Classes

Namesort descending Description
QueueStorageEntityTypeListBuilder Provides a listing of Queue storage entity type entities.