forum_update_dependencies

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

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部