function update_test_2_update_dependencies
Same name in other branches
- 9 core/modules/system/tests/modules/update_test_2/update_test_2.install \update_test_2_update_dependencies()
- 8.9.x core/modules/system/tests/modules/update_test_2/update_test_2.install \update_test_2_update_dependencies()
- 10 core/modules/system/tests/modules/update_test_2/update_test_2.install \update_test_2_update_dependencies()
- 11.x core/modules/system/tests/modules/update_test_2/update_test_2.install \update_test_2_update_dependencies()
Implements hook_update_dependencies().
See also
update_test_1_update_dependencies()
update_test_3_update_dependencies()
File
-
modules/
simpletest/ tests/ update_test_2.install, line 14
Code
function update_test_2_update_dependencies() {
// Combined with update_test_3_update_dependencies(), we are declaring here
// that these two modules run updates in the following order:
// 1. update_test_2_update_7000()
// 2. update_test_3_update_7000()
// 3. update_test_2_update_7001()
// 4. update_test_2_update_7002()
$dependencies['update_test_2'][7001] = array(
'update_test_3' => 7000,
);
// These are coordinated with the corresponding dependencies declared in
// update_test_1_update_dependencies().
$dependencies['system'][7000] = array(
'update_test_2' => 7001,
);
$dependencies['system'][7001] = array(
'update_test_1' => 7001,
);
return $dependencies;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.