1 drupal.inc drupal_check_module($module)

Checks a module's requirements.

Deprecated

since 1.0.0

See also

backdrop_check_module()

Related topics

File

core/includes/drupal.inc, line 2056
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_check_module($module) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  return backdrop_check_module($module);
}