On this page
function forum_update_dependencies
forum_update_dependencies()
Implements hook_update_dependencies().
File
- modules/forum/forum.install, line 246
- Install, update, and uninstall functions for the Forum module.
Code
function forum_update_dependencies() {
$dependencies['forum'][7003] = array(
// Forum update 7003 uses field API update functions, so must run after
// Field API has been enabled.
'system' => 7020,
// Forum update 7003 relies on updated taxonomy module schema. Ensure it
// runs after all taxonomy updates.
'taxonomy' => 7010,
);
return $dependencies;
}
© 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/modules!forum!forum.install/function/forum_update_dependencies/7.x