function _install_profile_modules_finished in Drupal 7
Implements callback_batch_finished().
'Finished' callback for module installation batch.
1 string reference to '_install_profile_modules_finished'
- install_profile_modules in includes/
install.core.inc - Installs required modules via a batch process.
File
- 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();
}