1 drupal.inc drupal_get_installed_schema_version($module, $reset = FALSE, $array = FALSE)

Returns the currently installed schema version for a module.

Deprecated

since 1.0.0

See also

backdrop_get_installed_schema_version()

Related topics

File

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

Code

function drupal_get_installed_schema_version($module, $reset = FALSE, $array = FALSE) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  return backdrop_get_installed_schema_version($module, $reset, $array);
}