You are here

function deploy_auto_plan_ctools_plugin_api in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 modules/deploy_auto_plan/deploy_auto_plan.module \deploy_auto_plan_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

modules/deploy_auto_plan/deploy_auto_plan.module, line 201
Deploy Auto Plan module functions.

Code

function deploy_auto_plan_ctools_plugin_api($module, $api) {
  if ($module == 'entity_dependency' && $api == 'iterator') {
    return array(
      'version' => 1,
    );
  }
}