You are here

render_cache_views.module in Render cache 7

Hook implementations and frequently used functions for render cache views module.

File

modules/render_cache_views/render_cache_views.module
View source
<?php

/**
 * @file
 * Hook implementations and frequently used functions for render cache views module.
 */

/**
 * Implements hook_views_api().
 */
function render_cache_views_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'render_cache_views') . '/views',
  );
}

Functions