deploy_example.features.inc in Deploy - Content Staging 7.3
Same filename and directory in other branches
File
modules/deploy_example/deploy_example.features.incView 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
Name | Description |
---|---|
deploy_example_ctools_plugin_api | Implements hook_ctools_plugin_api(). |