From 7b3a7b2f941d3fcf5e2506690fc0384b0696e9ce Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 29 May 2013 07:01:50 +0100 Subject: [PATCH] Issue #2002964 by markie, borisson_: Rename Views method get_lifespan() to getLifespan(). --- .../views/lib/Drupal/views/Plugin/views/cache/Time.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/cache/Time.php b/core/modules/views/lib/Drupal/views/Plugin/views/cache/Time.php index 537c40eb84f..d376a931099 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/cache/Time.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/cache/Time.php @@ -97,18 +97,18 @@ class Time extends CachePluginBase { } public function summaryTitle() { - $results_lifespan = $this->get_lifespan('results'); - $output_lifespan = $this->get_lifespan('output'); + $results_lifespan = $this->getLifespan('results'); + $output_lifespan = $this->getLifespan('output'); return format_interval($results_lifespan, 1) . '/' . format_interval($output_lifespan, 1); } - function get_lifespan($type) { + protected function getLifespan($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); + $lifespan = $this->getLifespan($type); if ($lifespan) { $cutoff = REQUEST_TIME - $lifespan; return $cutoff; @@ -119,7 +119,7 @@ class Time extends CachePluginBase { } function cache_set_expire($type) { - $lifespan = $this->get_lifespan($type); + $lifespan = $this->getLifespan($type); if ($lifespan) { return time() + $lifespan; }