protected function Time::getLifespan in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/cache/Time.php \Drupal\views\Plugin\views\cache\Time::getLifespan()
3 calls to Time::getLifespan()
- Time::cacheExpire in core/
modules/ views/ src/ Plugin/ views/ cache/ Time.php - Determine the expiration time of the cache type, or NULL if no expire.
- Time::cacheSetMaxAge in core/
modules/ views/ src/ Plugin/ views/ cache/ Time.php - Determine expiration time in the cache table of the cache type or CACHE_PERMANENT if item shouldn't be removed automatically from cache.
- Time::summaryTitle in core/
modules/ views/ src/ Plugin/ views/ cache/ Time.php - Return a string to display as the clickable title for the access control.
File
- core/
modules/ views/ src/ Plugin/ views/ cache/ Time.php, line 156 - Contains \Drupal\views\Plugin\views\cache\Time.
Class
- Time
- Simple caching of query results for Views displays.
Namespace
Drupal\views\Plugin\views\cacheCode
protected function getLifespan($type) {
$lifespan = $this->options[$type . '_lifespan'] == 'custom' ? $this->options[$type . '_lifespan_custom'] : $this->options[$type . '_lifespan'];
return $lifespan;
}