public function InstallerKernel::getInstallProfile in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Installer/InstallerKernel.php \Drupal\Core\Installer\InstallerKernel::getInstallProfile()
Gets the active install profile.
Return value
string|null The name of the any active install profile or distribution.
Overrides DrupalKernel::getInstallProfile
File
- core/lib/ Drupal/ Core/ Installer/ InstallerKernel.php, line 54 
Class
- InstallerKernel
- Extend DrupalKernel to handle force some kernel behaviors.
Namespace
Drupal\Core\InstallerCode
public function getInstallProfile() {
  global $install_state;
  if ($install_state && empty($install_state['installation_finished'])) {
    // If the profile has been selected return it.
    if (isset($install_state['parameters']['profile'])) {
      $profile = $install_state['parameters']['profile'];
    }
    else {
      $profile = NULL;
    }
  }
  else {
    $profile = parent::getInstallProfile();
  }
  return $profile;
}