TYPO3 TMENU 每个special.value 换行
我不出来。我想将每个给定的 PID 包装在其自己独特的包装中。
这是我的代码:
menutab.list = HMENU
menutab.list.special = directory
menutab.list.special.value = 7,8,9,10,11,12,13
menutab.list.1 = TMENU
menutab.list.1.wrap = <div>|</div>
...
所以工作正常。我得到了给定 PID 的每个子菜单,但现在我正在寻找类似的东西:
menutab.list.special.value.wrap = <div id="current PID!"> | </div>
我希望有人理解我的问题。 非常感谢!
I dont come forth. I want to wrap each given PID in its own unique wrap.
Here my code:
menutab.list = HMENU
menutab.list.special = directory
menutab.list.special.value = 7,8,9,10,11,12,13
menutab.list.1 = TMENU
menutab.list.1.wrap = <div>|</div>
...
So thats working fine. I get every submenu of given PIDs but now i'm searching for something like that:
menutab.list.special.value.wrap = <div id="current PID!"> | </div>
I hope someone understand my issue.
Big thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于您想要显示哪个字段,但基本上页面记录中的任何字段都可以显示到输出中。
这将给出以下输出:
有关更多选项,请查看 TSref 和 stdWrap 函数。
TS参考
http://typo3.org/documentation/文档库/references/doc_core_tsref/4.4.0/view/toc/0/
stdWrap
http://typo3.org/文档/文档库/引用/doc_core_tsref/4.4.0/view/1/5/#id2618234
It depends which field you would like to display, but basically any field from the page record can be displayed into the output.
This will give the following output:
For more options, please take a look at the TSref and the stdWrap functions.
TSref
http://typo3.org/documentation/document-library/references/doc_core_tsref/4.4.0/view/toc/0/
stdWrap
http://typo3.org/documentation/document-library/references/doc_core_tsref/4.4.0/view/1/5/#id2618234
我认为最简单的就是做类似的事情,不确定语法...:
不是最好的解决方案,但可以工作
I think the easiest is to do something like that, not sure of the syntax... :
Not the best solution, but can work