You are here

function deploy_plan_check_item_batch in Deploy - Content Staging 6

Wrapper function to deploy_plan_check_item() with batch API goodness.

Parameters

$module: The module which handles this item.

$data: The identifying data for this item

$description: The item's description for feedback messages

$context: Batch API context var for messages and results

1 string reference to 'deploy_plan_check_item_batch'
deploy_check_batch in ./deploy.module
Batch API callback for the hook_deploy_check() process.

File

./deploy.module, line 426
Deployment API which enables modules to deploy items between servers.

Code

function deploy_plan_check_item_batch($module, $data, $description, &$context) {
  deploy_plan_check_item($module, $data);

  // Update our progress information.
  $context['message'] = t('Now processing %item', array(
    '%item' => $description,
  ));
}