You are here

function spaces_user_ctools_plugin_api in Spaces 7.3

Same name and namespace in other branches
  1. 6.3 spaces_user/spaces_user.module \spaces_user_ctools_plugin_api()
  2. 7 spaces_user/spaces_user.module \spaces_user_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

spaces_user/spaces_user.module, line 31

Code

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