gpt4 book ai didi

drupal - 设置 Drupal 模块权重

转载 作者:行者123 更新时间:2023-12-03 22:48:36 24 4
gpt4 key购买 nike

在开发自定义模块时,设置模块权重的正确方法是什么?

最佳答案

这是在 Drupal 7 中执行此操作的正确方法

/**
* Implements hook_enable()
*/
function YOUR_MODULE_enable() {
db_update('system')
->fields(array('weight' => 1))
->condition('type', 'module')
->condition('name', 'YOUR_MODULE')
->execute();
}

关于drupal - 设置 Drupal 模块权重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4671308/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com