You are here

function views_content_cache_views_plugins in Views content cache 6.2

Same name and namespace in other branches
  1. 7.3 views/views_content_cache.views.inc \views_content_cache_views_plugins()

Implementation of hook_views_plugins().

File

views/views_content_cache.views.inc, line 6

Code

function views_content_cache_views_plugins() {
  return array(
    'cache' => array(
      'views_content_cache' => array(
        'path' => drupal_get_path('module', 'views_content_cache') . '/views',
        'title' => t('Content-based'),
        'help' => t('Advanced content based caching options for views.'),
        'handler' => 'views_content_cache_plugin_cache',
        'uses options' => TRUE,
      ),
    ),
  );
}