You are here

ImportEntityListBuilder.php in Content Synchronizer 8

File

src/ImportEntityListBuilder.php
View source
<?php

namespace Drupal\content_synchronizer;

use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;
use Drupal\Core\Routing\LinkGeneratorTrait;
use Drupal\Core\Url;

/**
 * Defines a class to build a listing of Import entities.
 *
 * @ingroup content_synchronizer
 */
class ImportEntityListBuilder extends EntityListBuilder {
  use LinkGeneratorTrait;

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

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

    /* @var $entity \Drupal\content_synchronizer\Entity\ImportEntity */
    $row['id'] = $entity
      ->id();
    $row['name'] = $this
      ->l($entity
      ->label(), new Url('entity.import_entity.canonical', [
      'import_entity' => $entity
        ->id(),
    ]));
    return $row + parent::buildRow($entity);
  }

}

Classes

Namesort descending Description
ImportEntityListBuilder Defines a class to build a listing of Import entities.