function _install_profile_modules_finished

Implements callback_batch_finished().

'Finished' callback for module installation batch.

1 string reference to '_install_profile_modules_finished'
install_profile_modules in drupal/includes/install.core.inc
Installs required modules via a batch process.

File

drupal/includes/install.core.inc, line 1619
API functions for installing Drupal.

Code

function _install_profile_modules_finished($success, $results, $operations) {

  // Flush all caches to complete the module installation process. Subsequent
  // installation tasks will now have full access to the profile's modules.
  drupal_flush_all_caches();
}