You are here

function install_install_profile in Drupal 9

Same name and namespace in other branches
  1. 8 core/includes/install.core.inc \install_install_profile()
  2. 10 core/includes/install.core.inc \install_install_profile()

Installs the install profile.

Parameters

$install_state: An array of information about the current installation state.

File

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

Code

function install_install_profile(&$install_state) {

  // Install all available optional config. During installation the module order
  // is determined by dependencies. If there are no dependencies between modules
  // then the order in which they are installed is dependent on random factors
  // like PHP version. Optional configuration therefore might or might not be
  // created depending on this order. Ensuring that we have installed all of the
  // optional configuration whose dependencies can be met at this point removes
  // any disparities that this creates.
  \Drupal::service('config.installer')
    ->installOptionalConfig();
  \Drupal::service('module_installer')
    ->install([
    $install_state['parameters']['profile'],
  ], FALSE);

  // Ensure that the install profile's theme is used.
  // @see _drupal_maintenance_theme()
  \Drupal::theme()
    ->resetActiveTheme();
}