如何获取Drupal规则设置?

发布于 2024-11-29 07:28:52 字数 224 浏览 0 评论 0原文

如何以编程方式检索特定规则的配置?

我尝试了

$settings = Rules_config_load('RULE_NAME');

它返回非常基本的信息(名称、ID 等)和空的“settings”数组。

也不能直接从 DB 获取它。

它存储在序列化数组中,无法完全用 unserialize()函数

How to programmatically retrieve configuration of the specific rule?

I tried

$settings = rules_config_load('RULE_NAME');

It returns very basic info (name, ID etc) and empty "settings" array.

Cant also get it directly from DB .

It is stored in serialized array that can not be fully processed with the
unserialize() function

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

靖瑶 2024-12-06 07:28:52

我遇到了同样的问题并最终来到这里,这是我找到的解决方案,您需要在规则上调用 actions() 才能访问设置:

$rule = rules_config_load('RULE_NAME');
foreach ($rule->actions() as $action) {
  $settings[] = $action->settings;
}

I got the same issue and end up here, here is a solution i found, you need to call actions() on your rule to access settings:

$rule = rules_config_load('RULE_NAME');
foreach ($rule->actions() as $action) {
  $settings[] = $action->settings;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文