You are here

public function TempStore::getCacheMaxAge in Views Extras (Session/Cookie/Token Support) 2.x

Same name and namespace in other branches
  1. 8 src/Plugin/views/argument_default/TempStore.php \Drupal\views_extras\Plugin\views\argument_default\TempStore::getCacheMaxAge()

The maximum age for which this object may be cached.

Return value

int The maximum time in seconds that this object may be cached.

Overrides CacheableDependencyInterface::getCacheMaxAge

File

src/Plugin/views/argument_default/TempStore.php, line 160

Class

TempStore
Default argument plugin to use the raw value from the URL.

Namespace

Drupal\views_extras\Plugin\views\argument_default

Code

public function getCacheMaxAge() {
  return (int) $this->options['cache_time'];
}