You are here

function features_test_ctools_plugin_api in Features 7.2

Same name and namespace in other branches
  1. 7 tests/features_test.features.inc \features_test_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

tests/features_test/features_test.features.inc, line 10
features_test.features.inc

Code

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