You are here

TextFileListBuilder.php in Apache Solr Config Generator 8

File

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

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

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

/**
 * Provides a listing of TextFile.
 */
class TextFileListBuilder extends ConfigEntityListBuilder {

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