You are here

function answers_ctools_plugin_api in Answers 6.2

Same name and namespace in other branches
  1. 6 answers.features.inc \answers_ctools_plugin_api()
  2. 7 answers.features.inc \answers_ctools_plugin_api()
  3. 7.2 answers.features.inc \answers_ctools_plugin_api()
  4. 7.3 answers.features.inc \answers_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

File

./answers.features.inc, line 6

Code

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