You are here

class views_plugin_cache_rules in Cache Actions 6

Same name and namespace in other branches
  1. 6.2 views_plugin_cache_rules.inc \views_plugin_cache_rules
  2. 7 views_plugin_cache_rules.inc \views_plugin_cache_rules

Plugin that caches views infinitely. This is not really that useful unless you want rules to invalidate your cache.

Hierarchy

Expanded class hierarchy of views_plugin_cache_rules

1 string reference to 'views_plugin_cache_rules'
cache_actions_views_plugins in ./cache_actions.views.inc
Implementation of hook_views_plugins.

File

./views_plugin_cache_rules.inc, line 14
This file contains a cache that just implements the views cache plugin. @author Fabian Sörqvist <fabian.sorqvist@gmail.com>

View source
class views_plugin_cache_rules extends views_plugin_cache {
  function summary_title() {
    return t('Rules');
  }
  function cache_expire($type) {
    return FALSE;
  }

}

Members