You are here

views_content_cache.views.inc in Views content cache 6.2

Same filename and directory in other branches
  1. 7.3 views/views_content_cache.views.inc

File

views/views_content_cache.views.inc
View source
<?php

/**
 * Implementation of hook_views_plugins().
 */
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,
      ),
    ),
  );
}

Functions

Namesort descending Description
views_content_cache_views_plugins Implementation of hook_views_plugins().