function deploy_plan_check_item in Deploy - Content Staging 6
Run the dependency checking hook for one deployment item.
Parameters
$module: The module handling this item.
$data: The identifying data or this item.
3 calls to deploy_plan_check_item()
- deploy_plan_check in ./
deploy.module - Run the dependency checking hooks for the specified deployment plan.
- deploy_plan_check_item_batch in ./
deploy.module - Wrapper function to deploy_plan_check_item() with batch API goodness.
- drush_deploy in includes/
deploy.drush.inc - Deploy a plan from the command line with drush.
File
- ./
deploy.module, line 752 - Deployment API which enables modules to deploy items between servers.
Code
function deploy_plan_check_item($module, $data) {
module_invoke($module, 'deploy_check', $data);
}