trait RefinableDependentAccessTrait

Trait for \Drupal\Core\Access\RefinableDependentAccessInterface.

@internal

Hierarchy

1 file declares its use of RefinableDependentAccessTrait
DependentAccessTest.php in core/tests/Drupal/Tests/Core/Access/DependentAccessTest.php

File

core/lib/Drupal/Core/Access/RefinableDependentAccessTrait.php, line 10

Namespace

Drupal\Core\Access
View source
trait RefinableDependentAccessTrait {
  
  /**
   * The access dependency.
   *
   * @var \Drupal\Core\Access\AccessibleInterface
   */
  protected $accessDependency;
  
  /**
   * {@inheritdoc}
   */
  public function setAccessDependency(AccessibleInterface $access_dependency) {
    $this->accessDependency = $access_dependency;
    return $this;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getAccessDependency() {
    return $this->accessDependency;
  }
  
  /**
   * {@inheritdoc}
   */
  public function addAccessDependency(AccessibleInterface $access_dependency) {
    if (empty($this->accessDependency)) {
      $this->accessDependency = $access_dependency;
      return $this;
    }
    if (!$this->accessDependency instanceof AccessGroupAnd) {
      $accessGroup = new AccessGroupAnd();
      $this->accessDependency = $accessGroup->addDependency($this->accessDependency);
    }
    $this->accessDependency
      ->addDependency($access_dependency);
    return $this;
  }

}

Members


Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.