function install_no_profile_error
Same name and namespace in other branches
- 6.x drupal-6.x/install.php \install_no_profile_error()
Indicates that there are no profiles available.
4 calls to install_no_profile_error()
- drupal_check_profile in drupal-7.x/
includes/ install.inc - Checks an installation profile's requirements.
- drupal_verify_profile in drupal-7.x/
includes/ install.inc - Verifies an installation profile for installation.
- install_select_profile in drupal-7.x/
includes/ install.core.inc - Selects which profile to install.
- _install_select_profile in drupal-7.x/
includes/ install.core.inc - Selects an installation profile.
Archivo
- drupal-7.x/
includes/ install.core.inc, line 1327 - API functions for installing Drupal.
Código
function install_no_profile_error() {
drupal_set_title(st('No profiles available'));
return st('We were unable to find any installation profiles. Installation profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.');
}