You are here

function views_content_cache_ctools_plugin_api in Views content cache 7.3

Same name and namespace in other branches
  1. 6.2 views_content_cache.module \views_content_cache_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./views_content_cache.module, line 401
Views content cache cache.

Code

function views_content_cache_ctools_plugin_api($module, $api) {
  if ($module == 'views_content_cache' && $api == 'plugins') {
    return array(
      'version' => 1,
    );
  }
}