You are here

function _install_module_batch in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 1787
API functions for installing Drupal.

Code

function _install_module_batch($module, $module_name, &$context) {
  \Drupal::service('module_installer')
    ->install(array(
    $module,
  ), FALSE);
  $context['results'][] = $module;
  $context['message'] = t('Installed %module module.', array(
    '%module' => $module_name,
  ));
}