You are here

deploy_example.features.inc in Deploy - Content Staging 7.3

Same filename and directory in other branches
  1. 7.2 modules/deploy_example/deploy_example.features.inc

File

modules/deploy_example/deploy_example.features.inc
View source
<?php

/**
 * @file
 * deploy_example.features.inc
 */

/**
 * Implements hook_ctools_plugin_api().
 */
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",
    );
  }
}

Functions