Drupal 6 规则执行自定义 php 输出而不是在 html 正文中

发布于 2024-12-04 01:23:05 字数 575 浏览 0 评论 0原文

我正在使用 drupal-6.22、rules-6.x-1.4 和一些模块。 在规则模块的帮助下,我设置了一个触发规则,当条件发生时,它执行自定义的 php 代码。 自定义 PHP 打印一些像这样的 html:

<?php echo '<div><span><a href="whatever">whatever</a></span></div>'; ?>

但是,html 只出现在 !DOCTYPE html 标记之前,有什么方法可以将代码放置在我想要的任何地方吗?

(e.g. <div id="header">HERE!</div>)

我认为在这种情况下需要JS,所以我使用drupal_add_js($output,'inline'),并调用外部函数来放置html,但仍然没有任何反应。

我认为必须有某种方法让 PHP 将输出插入到当前的 DOM 树中,是否有任何已知的函数或变量?

请帮忙,谢谢!!

I'm using drupal-6.22, rules-6.x-1.4, and some modules.
With the help of rules module, I've set a triggered rule, when the condition happens, it execute custom php code.
The custom PHP print some html like this:

<?php echo '<div><span><a href="whatever">whatever</a></span></div>'; ?>

BUT, the html just appears before the !DOCTYPE html tag, is there any method to place the code wherever I want?

(e.g. <div id="header">HERE!</div>)

I think in this case JS is in need, so I use drupal_add_js($output,'inline'), and called an outside function to place the html, still nothing happens.

I think there must be some method to let PHP insert the output into the current DOM tree, is there any known function or variables for this?

Please help, thanks!!

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

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

发布评论

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

评论(1

路还长,别太狂 2024-12-11 01:23:05

drupal_set_message() 似乎适合您。

drupal_set_message() seems to be the right thing for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文