You are here

EntityBrowserListBuilder.php in Entity Browser 8.2

Same filename and directory in other branches
  1. 8 src/Controllers/EntityBrowserListBuilder.php

File

src/Controllers/EntityBrowserListBuilder.php
View source
<?php

namespace Drupal\entity_browser\Controllers;

use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilder;

/**
 * Provides a list controller for entity browser.
 *
 * @ingroup entity_browser
 */
class EntityBrowserListBuilder extends EntityListBuilder {

  /**
   * {@inheritdoc}
   *
   * Building the header and content lines for the entity browser list.
   *
   * Calling the parent::buildHeader() adds a column for the possible actions
   * and inserts the 'edit' and 'delete' links as defined for the entity type.
   */
  public function buildHeader() {
    $header['id'] = $this
      ->t('ID');
    $header['name'] = $this
      ->t('Name');
    return $header + parent::buildHeader();
  }

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

    /* @var $entity \Drupal\entity_browser\Entity\EntityBrowser */
    $row['id'] = $entity
      ->id();
    $row['name'] = $entity
      ->label();
    return $row + parent::buildRow($entity);
  }

  /**
   * {@inheritdoc}
   */
  protected function getDefaultOperations(EntityInterface $entity) {
    if ($entity
      ->access('update')) {
      $operations['edit'] = [
        'title' => $this
          ->t('Edit'),
        'url' => $entity
          ->toUrl('edit-form'),
      ];
    }
    $operations['edit-widgets'] = [
      'title' => $this
        ->t('Edit Widgets'),
      'url' => $entity
        ->toUrl('edit-widgets'),
    ];
    if ($entity
      ->access('delete')) {
      $operations['delete'] = [
        'title' => $this
          ->t('Delete'),
        'url' => $entity
          ->toUrl('delete-form'),
        'weight' => 100,
      ];
    }
    return $operations;
  }

}

Classes

Namesort descending Description
EntityBrowserListBuilder Provides a list controller for entity browser.