Typo3:外部链接额外的类。存储在哪里?

发布于 12-09 11:19 字数 148 浏览 1 评论 0原文

我制作了一个扩展,它使用 header_link 字段来设置链接。问题是,对于外部链接,我想要带有额外类的 标记,这是可以的,因为后端有一个字段。问题是,我不知道这个值存储在哪里。任何人都可以帮助我吗?

谢谢!

I made an extension which uses the header_link field to set up links. Problem is that with external links I want the <a> tag with an extra class, which is ok since there is a field for that in the backend. Problem is, I dont know where this value is stored. Anyone can help me, please?

Thanks!

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

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

发布评论

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

评论(1

肤浅与狂妄2024-12-16 11:19:06

重新阅读您的问题后,我认为答案比我最初想象的要简单。
标准链接字段是存储到数据库中的字符串,如下所示:

www.linktarget.com - - - customlinkclass

这几乎可以解释自己。您可以在扩展 php 代码中使用 t3lib_div::trimExplode() 单独访问这些值,然后使用 tslib_cObj::typoLink 创建链接

但是,我不太清楚header_link 字段的含义。

After re-reading your question, I think the answer is simpler then I initially thought.
Standard link fields are a string stored to the database like that:

www.linktarget.com - - - customlinkclass

Which pretty much explains itself. You can access the values seperately with t3lib_div::trimExplode() in your extensions php code, then create the link with tslib_cObj::typoLink

However, I don't know exactly what you mean with header_link field.

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