hook_update_N 钩子的行为
我注意到,当我的自定义模块有两个更新并且我选择第一个更新时,Drupal 还将运行第二个更新,而无需手动选择第二个更新。这是正常的吗?
I noticed that when I have two updates for my custom module, and I select the first update, Drupal will run also the second update, without to manually select the second. Is this normal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 update.php 中的代码,看来实际上就是这种情况。选择模块更新将运行该更新及其之后的所有更新。
http://api.drupal.org/api/drupal/update.php /6/来源
Looking at the code in update.php it appears that this is infact that case. Selecting a module update will run that update and all updates after it.
http://api.drupal.org/api/drupal/update.php/6/source
Drupal 将始终在特定模块运行更新后运行所有更新,并记录在系统表中。
通常您不需要选择 Drupal 必须运行哪个更新,但即使您这样做,Drupal 也将始终运行选定的更新以及任何连续的更新。
Drupal will always run all the updates after the one already run for the specific module, and recorded in the system table.
Normally you don't need to select which update Drupal must run, but even if you do it, Drupal will always run the selected update and any consecutive ones.