Drupal 6 规则执行自定义 php 输出而不是在 html 正文中
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
drupal_set_message() 似乎适合您。
drupal_set_message() seems to be the right thing for you.