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 265

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);
}
doc_Drupal
2016-10-29 08:42:30
Comments
Leave a Comment

Please login to continue.