function spaces_og_ctools_plugin_api in Spaces 7.3
Same name and namespace in other branches
- 6.3 spaces_og/spaces_og.module \spaces_og_ctools_plugin_api()
- 7 spaces_og/spaces_og.module \spaces_og_ctools_plugin_api()
Implements hook_ctools_plugin_api().
File
- spaces_og/
spaces_og.module, line 6
Code
function spaces_og_ctools_plugin_api($module, $api) {
if ($module == "spaces" && $api == "spaces") {
return array(
"version" => 3,
);
}
else {
if ($module == 'spaces' && $api == 'plugins') {
return array(
'version' => 3,
);
}
}
}