You are here

cache_actions.views.inc in Cache Actions 7

This file contains views hooks.

File

cache_actions.views.inc
View source
<?php

/**
 * @file
 * This file contains views hooks.
 */

/**
 * Implementation of hook_views_plugins().
 */
function cache_actions_views_plugins() {
  return array(
    'cache' => array(
      'rules' => array(
        'title' => t('Rules-triggered cache'),
        'help' => t('Caches the view for an inifinite amount of time
        and lets rules handle the clearing of the cache.'),
        'handler' => 'views_plugin_cache_rules',
        'help-topic' => 'cache-rules',
      ),
    ),
  );
}

Functions

Namesort descending Description
cache_actions_views_plugins Implementation of hook_views_plugins().