public AccessResult::cachePerPermissions()
Convenience method, adds the "user.permissions" cache context.
Return value
$this
File
- core/lib/Drupal/Core/Access/AccessResult.php, line 239
Class
- AccessResult
- Value object for passing an access result with cacheability metadata.
Namespace
Drupal\Core\Access
Code
1 2 3 4 | public function cachePerPermissions() { $this ->addCacheContexts( array ( 'user.permissions' )); return $this ; } |
Please login to continue.