| 7 install.inc | drupal_install_profile_distribution_name() |
| 8 install.inc | drupal_install_profile_distribution_name() |
Loads the install profile, extracting its defined distribution name.
Return value
The distribution name defined in the profile's .info file. Defaults to "Drupal" if none is explicitly provided by the install profile.
See also
8 calls to drupal_install_profile_distribution_name()
File
- includes/
install.inc, line 191
Code
function drupal_install_profile_distribution_name() {
// During installation, the profile information is stored in the global
// installation state (it might not be saved anywhere yet).
if (drupal_installation_attempted()) {
global $install_state;
return $install_state['profile_info']['distribution_name'];
}
// At all other times, we load the profile via standard methods.
else {
$profile = drupal_get_profile();
$info = system_get_info('module', $profile);
return $info['distribution_name'];
}
}
Login or register to post comments