想要在 drupal 中创建状态组合框块
我想在组合框中列出要在左侧栏中的块中显示的状态。 根据状态的选择,我想过滤页面节点内的 HTML 代码。
我该怎么做呢?
I want to list states in a combo box to be displayed in block in left side bar.
Depending on the selecting of state I want to filter the HTML code within page nodes.
How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何从那里继续进行很大程度上取决于您需要什么类型的过滤。无论如何
hook_nodeapi
在各种与节点相关的场合被调用,因此您可能需要实现它来进行实际的过滤。
hook_block
.How to proceed from there depends largely on what type of filtering you need. In any case
hook_nodeapi
is invoked on various node-related occasions, so you might want to implement it to do the actual filtering.