protected function Time::getLifespan

3 calls to Time::getLifespan()

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/cache/Time.php, line 105
Definition of Drupal\views\Plugin\views\cache\Time.

Class

Time
Simple caching of query results for Views displays.

Namespace

Drupal\views\Plugin\views\cache

Code

protected function getLifespan($type) {
  $lifespan = $this->options[$type . '_lifespan'] == 'custom' ? $this->options[$type . '_lifespan_custom'] : $this->options[$type . '_lifespan'];
  return $lifespan;
}