You are here

function deploy_example_ctools_plugin_api in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 modules/deploy_example/deploy_example.features.inc \deploy_example_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

modules/deploy_example/deploy_example.features.inc, line 10
deploy_example.features.inc

Code

function deploy_example_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "deploy" && $api == "deploy_endpoints") {
    return array(
      "version" => "1",
    );
  }
  list($module, $api) = func_get_args();
  if ($module == "deploy" && $api == "deploy_plans") {
    return array(
      "version" => "1",
    );
  }
}