function update_manager_download_batch_finished

7.x update.manager.inc update_manager_download_batch_finished($success, $results)

Batch callback: Performs actions when the download batch is completed.

Parameters

$success: TRUE if the batch operation was successful, FALSE if there were errors.

$results: An associative array of results from the batch operation.

Related topics

1 string reference to 'update_manager_download_batch_finished'
update_manager_update_form_submit in drupal-7.x/modules/update/update.manager.inc
Form submission handler for update_manager_update_form().

File

drupal-7.x/modules/update/update.manager.inc, line 345
Administrative screens and processing functions of the Update Manager module.

Code

function update_manager_download_batch_finished($success, $results) {
  if (!empty($results['errors'])) {
    $error_list = array(
      'title' => t('Downloading updates failed:'),
      'items' => $results['errors'],
    );
    drupal_set_message(theme('item_list', $error_list), 'error');
  }
  elseif ($success) {
    drupal_set_message(t('Updates downloaded successfully.'));
    $_SESSION['update_manager_update_projects'] = $results['projects'];
    drupal_goto('admin/update/ready');
  }
  else {
    // Ideally we're catching all Exceptions, so they should never see this,
    // but just in case, we have to tell them something.
    drupal_set_message(t('Fatal error trying to download.'), 'error');
  }
}