W3cubDocs

/Drupal 8

public function AccessResult::cacheUntilEntityChanges

public AccessResult::cacheUntilEntityChanges(EntityInterface $entity)

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 260

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);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Access!AccessResult.php/function/AccessResult::cacheUntilEntityChanges/8.1.x