You are here

function cache_actions_plugin_cache_rules::cache_expire in Cache Actions 7.2

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

Since rules will be triggering our cache invalidation, the cache will never expire.

Parameters

string $type: Not used in this plugin.

Return value

FALSE Returns always false.

Overrides views_plugin_cache::cache_expire

File

plugins/views/cache_actions_plugin_cache_rules.inc, line 43
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 cache_expire($type) {
  return FALSE;
}