cache_actions.views.inc in Cache Actions 6.2
Same filename and directory in other branches
This file contains views hooks.
File
cache_actions.views.incView 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
Name | Description |
---|---|
cache_actions_views_plugins | Implementation of hook_views_plugins(). |