我可以在 drupal 节点主体中添加一些变量吗?

发布于 2024-10-19 21:40:51 字数 70 浏览 3 评论 0原文

当我使用故事类型创建文章时,我可以在正文的文本区域中添加一些变量吗?然后可以调用该变量并输出它。谢谢。 drupal版本是6。

when i create an article useing the story type,could i add some variables into the body's textarea.then can invoke the variable and output it. thank you.
the drupal version is 6.

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

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

发布评论

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

评论(2

汹涌人海 2024-10-26 21:40:51

插入文本占位符以在渲染时替换为实际值是过滤器的目的Drupal 中的系统令牌过滤器提供了令牌 替换,如果您需要替换标记化值,它是一个方便的工具。但是有大量的过滤器Drupal 6.x,您甚至可以 自定义模块中定义您自己的。 自定义过滤器可以为此提供帮助。您还可以使用令牌过滤器并在自定义模块中定义您自己的令牌。

一个简单的解决方案是使用 PHP 过滤器,但这是一种不安全的方法。此外,将 PHP 代码放入节点(或任何内容)中是维护的噩梦和坏习惯。你最好从一开始就正确地做这件事。

Inserting textual placeholders to be replaced by actual values on render is the purpose of the filters system in Drupal. Token filter provides, well, token replacement and is an handy tools if your need replacement for tokenized values. But there are plenty of filters for Drupal 6.x and you can even define your own in a custom module. The Custom filter can help for this. You can also use token filter and define your own token in your custom module.

A simple solution is to use the PHP filter but this is a insecure way of doing it. Also, putting PHP code in node (or any content) is a maintenance nightmare and a bad habits. You would be better doing it properly from the start.

久夏青 2024-10-26 21:40:51

Contrib 模块将是最佳选择,除非您对 PHP 感到满意,在这种情况下您可以只使用 PHP 过滤器。根据您需要的变量,您可以尝试以下之一:
http://drupal.org/project/InsertNodehttp://drupal.org/project/token_filter

还有其他几个(我喜欢插入视图),但它们目前未标记为用于生产用途。

Contrib modules would be the way to go, unless you feel comfortable with PHP in which case you can just use the PHP filter. Depending on what variables you need you can try one of:
http://drupal.org/project/InsertNode and http://drupal.org/project/token_filter

There are a couple of others (I like insert view) but they're currently not marked for production use.

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