Can you Control the Order of Hooks quot;Firingquot; in Drupal?(你能控制钩子的顺序“射击吗?在 Drupal 中?)
问题描述
如果两个模块在 Drupal 中实现了相同的钩子,系统是否有办法定义钩子函数的调用顺序,还是只是绘制/字母顺序的运气?或者是其他东西?或者我的问题是否表明我以某种基本方式误解了 hooks,让我看起来很愚蠢?
If two modules implement the same hook in Drupal, does the system have a way to define which order the hook functions are called, or is it just luck of the draw/alphabetical ordering? Or something else? Or does my question show I misunderstand hooks in some fundamental way that makes me look dumb?
推荐答案
顺序是根据系统表中模块的权重设置确定的.如果两个模块的权重相同,则按字母顺序排列.
The order is determined based on the weight setting for the module in the system table. If two modules have the same weight, the order is alphabetical.
这篇关于你能控制钩子的顺序“射击"吗?在 Drupal 中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:你能控制钩子的顺序“射击"吗?在 Drupal 中?
基础教程推荐
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
