You are here

function apps_download_batch_finished in Apps 7

Batch callback invoked when the download batch is completed.

A pass though to update_manager_download_batch_finished but we set $_GET['destination'] to control the drupal_goto that is in that function.

1 string reference to 'apps_download_batch_finished'
apps_download_apps_batch in ./apps.installer.inc
Make the batch for downloading modules for app.

File

./apps.installer.inc, line 104
installer.inc hold all of the function used to download apps and thier deps

Code

function apps_download_batch_finished($success, $results) {
  module_load_include("inc", "update", "update.manager");
  $_GET['destination'] = $_SESSION['apps_install_next'];
  update_manager_download_batch_finished($success, $results);
}