You are here

function spaces_test_ctools_plugin_api in Spaces 7

Same name and namespace in other branches
  1. 6.3 tests/spaces_test.features.inc \spaces_test_ctools_plugin_api()
  2. 7.3 tests/spaces_test.features.inc \spaces_test_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

tests/spaces_test.features.inc, line 6

Code

function spaces_test_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => 1,
    );
  }
}