You are here

function spaces_taxonomy_ctools_plugin_api in Spaces 6.3

Same name and namespace in other branches
  1. 7.3 spaces_taxonomy/spaces_taxonomy.module \spaces_taxonomy_ctools_plugin_api()
  2. 7 spaces_taxonomy/spaces_taxonomy.module \spaces_taxonomy_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

File

spaces_taxonomy/spaces_taxonomy.module, line 15

Code

function spaces_taxonomy_ctools_plugin_api($module, $api) {
  if ($module == 'spaces' && $api == 'plugins') {
    return array(
      'version' => 3,
    );
  }
}