You are here

function answers_ctools_plugin_api in Answers 7.3

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

Implements hook_ctools_plugin_api().

File

./answers.features.inc, line 11
answers.features.inc

Code

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