function CacheableMetadata::setCacheMaxAge
Same name in other branches
- 9 core/lib/Drupal/Core/Cache/CacheableMetadata.php \Drupal\Core\Cache\CacheableMetadata::setCacheMaxAge()
- 8.9.x core/lib/Drupal/Core/Cache/CacheableMetadata.php \Drupal\Core\Cache\CacheableMetadata::setCacheMaxAge()
- 10 core/lib/Drupal/Core/Cache/CacheableMetadata.php \Drupal\Core\Cache\CacheableMetadata::setCacheMaxAge()
Sets the maximum age (in seconds).
Defaults to Cache::PERMANENT
Parameters
int $max_age: The max age to associate.
Return value
$this
Throws
\InvalidArgumentException If a non-integer value is supplied.
File
-
core/
lib/ Drupal/ Core/ Cache/ CacheableMetadata.php, line 74
Class
- CacheableMetadata
- Defines a generic class for passing cacheability metadata.
Namespace
Drupal\Core\CacheCode
public function setCacheMaxAge($max_age) {
if (!is_int($max_age)) {
throw new \InvalidArgumentException('$max_age must be an integer');
}
$this->cacheMaxAge = $max_age;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.