Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Access/AccessResult.php \Drupal\Core\Access\AccessResult::setCacheMaxAge()
  2. 9 core/lib/Drupal/Core/Access/AccessResult.php \Drupal\Core\Access\AccessResult::setCacheMaxAge()

Sets the maximum age for which this access result may be cached.

Parameters

int $max_age: The maximum time in seconds that this access result may be cached.

Return value

$this

1 call to AccessResult::setCacheMaxAge()
AccessResult::inheritCacheability in core/lib/Drupal/Core/Access/AccessResult.php
Inherits the cacheability of the other access result, if any.

File

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

Class

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

Namespace

Drupal\Core\Access

Code

public function setCacheMaxAge($max_age) {
  $this->cacheMaxAge = $max_age;
  return $this;
}