install_missing_modules_error

5 install.php install_missing_modules_error($profile)

Show an error page when Drupal is missing required modules.

1 call to install_missing_modules_error()

File

./install.php, line 521

Code

function install_missing_modules_error($profile) {
  global $base_url;

  drupal_maintenance_theme();
  drupal_set_title(st('Modules missing'));
  print theme('install_page', '<p>' . st('One or more required modules are missing. Please check the error messages and <a href="!url">try again</a>.', array('!url' => "install.php?profile=$profile")) . '</p>');
  exit;
}
Login or register to post comments