AccessResult::cachePerUser

public AccessResult::cachePerUser()

Convenience method, adds the "user" cache context.

Return value

$this

File

core/lib/Drupal/Core/Access/AccessResult.php, line 249

Class

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

Namespace

Drupal\Core\Access

Code

public function cachePerUser() {
  $this->addCacheContexts(array('user'));
  return $this;
}
doc_Drupal
2016-10-29 08:42:29
Comments
Leave a Comment

Please login to continue.