想要在 drupal 中创建状态组合框块

发布于 2024-10-19 00:17:51 字数 75 浏览 0 评论 0原文

我想在组合框中列出要在左侧栏中的块中显示的状态。 根据状态的选择,我想过滤页面节点内的 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 技术交流群。

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

发布评论

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

评论(1

痕至 2024-10-26 00:17:51
  1. 如果您不熟悉 Drupal 模块的创建方式,请阅读创建模块 - 教程:Drupal 6.x
  2. 创建一个表单。 Forms API 快速入门指南表单 API 参考告诉您如何在 Drupal 中完成此操作。
  3. 通过实施 < 将表单放入块中代码>hook_block

如何从那里继续进行很大程度上取决于您需要什么类型的过滤。无论如何 hook_nodeapi在各种与节点相关的场合被调用,因此您可能需要实现它来进行实际的过滤。

  1. If you are unfamilliar with how Drupal modules are created, work through Creating modules - a tutorial: Drupal 6.x
  2. Create a form. The Forms API QuickStart Guide and the Forms API Reference tell you how this is done in Drupal.
  3. Put the form into a block by implementing 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.

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