class CategoryListController

Provides a listing of contact categories.

Hierarchy

Expanded class hierarchy of CategoryListController

File

drupal/core/modules/contact/lib/Drupal/contact/CategoryListController.php, line 15

Namespace

Drupal\contact
View source
class CategoryListController extends ConfigEntityListController {

  /**
   * Overrides Drupal\Core\Entity\EntityListController::getOperations().
   */
  public function getOperations(EntityInterface $entity) {
    $operations = parent::getOperations($entity);
    if (module_exists('field_ui')) {
      $uri = $entity
        ->uri();
      $operations['manage-fields'] = array(
        'title' => t('Manage fields'),
        'href' => $uri['path'] . '/fields',
        'options' => $uri['options'],
        'weight' => 11,
      );
      $operations['manage-display'] = array(
        'title' => t('Manage display'),
        'href' => $uri['path'] . '/display',
        'options' => $uri['options'],
        'weight' => 12,
      );
    }
    if (!$entity
      ->access('delete')) {
      unset($operations['delete']);
    }
    if (!$entity
      ->access('update')) {
      unset($operations['edit']);
    }
    return $operations;
  }

  /**
   * Overrides Drupal\Core\Entity\EntityListController::buildHeader().
   */
  public function buildHeader() {
    $row['category'] = t('Category');
    $row['recipients'] = t('Recipients');
    $row['selected'] = t('Selected');
    $row['operations'] = t('Operations');
    return $row;
  }

  /**
   * Overrides Drupal\Core\Entity\EntityListController::buildRow().
   */
  public function buildRow(EntityInterface $entity) {
    $row['category'] = check_plain($entity
      ->label());

    // Special case the personal category.
    if ($entity
      ->id() == 'personal') {
      $row['recipients'] = t('Selected user');
      $row['selected'] = t('No');
    }
    else {
      $row['recipients'] = check_plain(implode(', ', $entity->recipients));
      $default_category = config('contact.settings')
        ->get('default_category');
      $row['selected'] = $default_category == $entity
        ->id() ? t('Yes') : t('No');
    }
    $row['operations']['data'] = $this
      ->buildOperations($entity);
    return $row;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CategoryListController::buildHeader public function Overrides Drupal\Core\Entity\EntityListController::buildHeader(). Overrides EntityListController::buildHeader
CategoryListController::buildRow public function Overrides Drupal\Core\Entity\EntityListController::buildRow(). Overrides EntityListController::buildRow
CategoryListController::getOperations public function Overrides Drupal\Core\Entity\EntityListController::getOperations(). Overrides ConfigEntityListController::getOperations
ConfigEntityListController::load public function Overrides Drupal\Core\Entity\EntityListController::load(). Overrides EntityListController::load 3
EntityListController::$entityInfo protected property The entity info array.
EntityListController::$entityType protected property The entity type name.
EntityListController::$moduleHandler protected property The module handler to invoke hooks on.
EntityListController::$storage protected property The entity storage controller class.
EntityListController::buildOperations public function Builds a renderable list of operation links for the entity. 1
EntityListController::createInstance public static function Instantiates a new instance of this entity controller. Overrides EntityControllerInterface::createInstance 1
EntityListController::getStorageController public function Implements \Drupal\Core\Entity\EntityListControllerInterface::getStorageController(). Overrides EntityListControllerInterface::getStorageController
EntityListController::render public function Implements \Drupal\Core\Entity\EntityListControllerInterface::render(). Overrides EntityListControllerInterface::render 6
EntityListController::__construct public function Constructs a new EntityListController object. 1