You are here

TextFieldListBuilder.php in Apache Solr Config Generator 8

File

src/Controller/TextFieldListBuilder.php
View source
<?php

/**
 * @file
 * Contains Drupal\apachesolr_confgen\Controller\TextFieldListBuilder.
 */
namespace Drupal\apachesolr_confgen\Controller;

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

/**
 * Provides a listing of TextField.
 */
class TextFieldListBuilder extends ConfigEntityListBuilder {

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

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

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

}

Classes

Namesort descending Description
TextFieldListBuilder Provides a listing of TextField.