| 7 common.inc | drupal_check_incompatibility($v, $current_version) |
| 8 common.inc | drupal_check_incompatibility($v, $current_version) |
Checks whether a version is compatible with a given dependency.
Parameters
$v: The parsed dependency structure from drupal_parse_dependency().
$current_version: The version to check against (like 4.2).
Return value
NULL if compatible, otherwise the original dependency version string that caused the incompatibility.
See also
2 calls to drupal_check_incompatibility()
File
- includes/
common.inc, line 7417 - Common functions that many Drupal modules will need to reference.
Code
function drupal_check_incompatibility($v, $current_version) {
if (!empty($v['versions'])) {
foreach ($v['versions'] as $required_version) {
if ((isset($required_version['op']) && !version_compare($current_version, $required_version['version'], $required_version['op']))) {
return $v['original_version'];
}
}
}
}
Login or register to post comments