function _install_module_batch
Same name in other branches
- 7.x includes/install.core.inc \_install_module_batch()
- 9 core/includes/install.core.inc \_install_module_batch()
- 10 core/includes/install.core.inc \_install_module_batch()
- 11.x core/includes/install.core.inc \_install_module_batch()
Implements callback_batch_operation().
Performs batch installation of modules.
1 string reference to '_install_module_batch'
- install_profile_modules in core/
includes/ install.core.inc - Installs required modules via a batch process.
File
-
core/
includes/ install.core.inc, line 1881
Code
function _install_module_batch($module, $module_name, &$context) {
\Drupal::service('module_installer')->install([
$module,
], FALSE);
$context['results'][] = $module;
$context['message'] = t('Installed %module module.', [
'%module' => $module_name,
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.