You are here

PathFieldItemList.php in Zircon Profile 8

File

core/modules/path/src/Plugin/Field/FieldType/PathFieldItemList.php
View source
<?php

/**
 * @file
 * Contains \Drupal\path\Plugin\Field\FieldType\PathFieldItemList.
 */
namespace Drupal\path\Plugin\Field\FieldType;

use Drupal\Core\Access\AccessResult;
use Drupal\Core\Field\FieldItemList;
use Drupal\Core\Session\AccountInterface;

/**
 * Represents a configurable entity path field.
 */
class PathFieldItemList extends FieldItemList {

  /**
   * {@inheritdoc}
   */
  public function defaultAccess($operation = 'view', AccountInterface $account = NULL) {
    if ($operation == 'view') {
      return AccessResult::allowed();
    }
    return AccessResult::allowedIfHasPermissions($account, [
      'create url aliases',
      'administer url aliases',
    ], 'OR')
      ->cachePerPermissions();
  }

}

Classes

Namesort descending Description
PathFieldItemList Represents a configurable entity path field.