function install_install_profile

Same name and namespace in other branches
  1. 8.9.x core/includes/install.core.inc \install_install_profile()
  2. 10 core/includes/install.core.inc \install_install_profile()
  3. 11.x 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 1649

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();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.