protected RenderCache::maxAgeToExpire($max_age)
Maps a #cache[max-age] value to an "expire" value for the Cache API.
Parameters
int $max_age: A #cache[max-age] value.
Return value
int A corresponding "expire" value.
See also
\Drupal\Core\Cache\CacheBackendInterface::set()
File
- core/lib/Drupal/Core/Render/RenderCache.php, line 283
Class
- RenderCache
- Wraps the caching logic for the render caching system.
Namespace
Drupal\Core\Render
Code
1 2 3 | protected function maxAgeToExpire( $max_age ) { return ( $max_age === Cache::PERMANENT) ? Cache::PERMANENT : (int) $this ->requestStack->getMasterRequest()->server->get( 'REQUEST_TIME' ) + $max_age ; } |
Please login to continue.