Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Time.php

function 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
Determines cache expiration time based on its type.
Time::summaryTitle in core/modules/views/src/Plugin/views/cache/Time.php
Returns a string to display as the clickable title for the access control.

File

core/modules/views/src/Plugin/views/cache/Time.php, line 143

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;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal