Drupal:纯文本形式的日期 CCK 字段的令牌
我正在使用规则模块发送邮件,并插入代表 CCK 日期字段的令牌。此令牌包含不应出现在纯文本邮件中的 HTML 格式。
因此,当我插入令牌时,我得到的
<span class="date-display-single">06.09.2010 - 15:52</span>
不是
06.09.2010 - 15:52
我想要的。
关于如何将日期作为令牌访问而无需格式化,仅纯文本的任何想法?
I'm using the Rules module to send a mail and I'm inserting a token that represents a CCK Date field. This token contains HTML formatting which should not be present in a plain text mail.
So when I insert the token I get
<span class="date-display-single">06.09.2010 - 15:52</span>
Instead of
06.09.2010 - 15:52
which is what I want.
Any idea on how to access the Date as a token without the formatting, just plain text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的事情可能是创建您自己的令牌并剥离 html。您应该能够将日期模块的执行方式复制到自定义模块中,然后使用
check_plain
或类似的方法编辑格式。这样您就可以在真正需要时保留格式。
The easiest thing will probably be to create your own token with the html stripped away. You should be able to copy how the date module does this into your custom module, and just edit the formatting, by using
check_plain
or something similar.That way you can keep the formatting when you actually want it.