You are here

public function AccessResult::cacheUntilEntityChanges in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Access/AccessResult.php \Drupal\Core\Access\AccessResult::cacheUntilEntityChanges()

Convenience method, adds the entity's cache tag.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity whose cache tag to set on the access result.

Return value

$this

Deprecated

in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. Use ::addCacheableDependency() instead.

File

core/lib/Drupal/Core/Access/AccessResult.php, line 264
Contains \Drupal\Core\Access\AccessResult.

Class

AccessResult
Value object for passing an access result with cacheability metadata.

Namespace

Drupal\Core\Access

Code

public function cacheUntilEntityChanges(EntityInterface $entity) {
  return $this
    ->addCacheableDependency($entity);
}