如何在TYPO3 Fluid VHS菜单中包含常量

时间:2015-03-23 10:15:01

标签: typo3 fluid

我有一个由Fluid Menu ViewHelper生成的简单菜单:

<v:page.menu useShortcutData="TRUE" levels="3" expandAll="1" class="menu" classActive="act" substElementUid="1" excludePages="12,13,3" />

导航中隐藏了多种语言,每种语言都隐藏了不同的页面,我想在“excludePages”部分中进行更改。

在Typoscript中,我只会使用{$ exclude}之类的常量标记。在流体中添加标记会破坏菜单。在像这样的内联流体设置中实现这一目标的方法是什么?

1 个答案:

答案 0 :(得分:1)

有不同的方法可以保持流畅。

1。包括表格TypoScript

{f:cObject(typoscriptObjectPath: 'lib.myConstant')}

2。保存在分机的设置中

plugin.tx_myext.settings {
  myonstant = TEXT
  myconstant = 1,2,3
}

3。页面模板中的配置(纯流体方式)

<f:section name="Configuration">
    <flux:form id="mypage" options="{icon: 'Icons/Page/Standard.gif'}">
        <flux:field.tree name="myConstantFromTRee" table="pages" parentField="pid" expandAll="0" multiple="1" minItems="0" maxItems="0" label="myConstantFromList" foreignLabel="title" size="10"/> 
    </flux:form>
    <flux:grid>
        <flux:grid.row>
            <flux:grid.column colPos="0"  name="main" />
        </flux:grid.row>
    </flux:grid>
</f:section>

并使用{settings.myConstantFromTRee}访问它。