You are here

function views_content_cache_ctools_plugin_api in Views content cache 6.2

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

Implementation of hook_ctools_plugin_api().

File

./views_content_cache.module, line 417
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,
    );
  }
}