install_no_profile_error

Versions
mediamosa-21
install_no_profile_error()

Indicate that there are no profiles available.

▾ 4 functions call install_no_profile_error()

drupal_check_profile in includes/install.inc
Check an install profile's requirements.
drupal_verify_profile in includes/install.inc
Verify an install profile for installation.
install_select_profile in includes/install.core.inc
Installation task; select which profile to install.
_install_select_profile in includes/install.core.inc
Helper function for automatically selecting an installation profile from a list or from a selection passed in via $_POST.

Code

includes/install.core.inc, line 1274

<?php
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.');
}
?>