diff --git a/plugins/views_plugin_cache_time.inc b/plugins/views_plugin_cache_time.inc index 8a28108dad4f462058168827eb6290202085a9b5..d6db2024c4fc85f989c23ef6e4da68c797fc6f54 100644 --- a/plugins/views_plugin_cache_time.inc +++ b/plugins/views_plugin_cache_time.inc @@ -83,11 +83,18 @@ function summary_title() { foreach ($custom_fields as $field) { ${$field} = $this->options[$field] == 'custom' ? $this->options[$field . '_custom'] : $this->options[$field]; } + $results_lifespan = $this->get_lifespan('results'); + $output_lifespan = $this->get_lifespan('output'); return format_interval($results_lifespan, 1) . '/' . format_interval($output_lifespan, 1); } - function cache_expire($type) { + function get_lifespan($type) { $lifespan = $this->options[$type . '_lifespan'] == 'custom' ? $this->options[$type . '_lifespan_custom'] : $this->options[$type . '_lifespan']; + return $lifespan; + } + + function cache_expire($type) { + $lifespan = $this->get_lifespan($type); if ($lifespan) { $cutoff = REQUEST_TIME - $lifespan; return $cutoff; @@ -98,7 +105,7 @@ function cache_expire($type) { } function cache_set_expire($type) { - $lifespan = $this->options[$type . '_lifespan'] == 'custom' ? $this->options[$type . '_lifespan_custom'] : $this->options[$type . '_lifespan']; + $lifespan = $this->get_lifespan($type); if ($lifespan) { return time() + $lifespan; }