function install_verify_requirements

install_verify_requirements(&$install_state)

Verifies the requirements for installing Drupal.

Parameters

$install_state: An array of information about the current installation state.

Return value

A themed status report, or an exception if there are requirement errors.

File

core/includes/install.core.inc, line 1017
API functions for installing Drupal.

Code

function install_verify_requirements(&$install_state) {
  // Check the installation requirements for Drupal and this profile.
  $requirements = install_check_requirements($install_state);

  // Verify existence of all required modules.
  $requirements += drupal_verify_profile($install_state);

  return install_display_requirements($install_state, $requirements);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!install.core.inc/function/install_verify_requirements/8.1.x