You are here

function cache_actions_plugin_cache_rules::init in Cache Actions 7

Same name and namespace in other branches
  1. 7.2 plugins/views/cache_actions_plugin_cache_rules.inc \cache_actions_plugin_cache_rules::init()

Initialize the plugin.

Parameters

view $view: The view object.

object $display: The display handler.

Overrides views_plugin_cache::init

File

plugins/views/cache_actions_plugin_cache_rules.inc, line 17
This file contains a cache that just implements the views cache plugin.

Class

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

Code

function init(&$view, &$display) {
  parent::init($view, $display);
}