我有以下页面模板:
<div xmlns="http://www.w3.org/1999/xhtml" lang="en"
xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers"
xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers">
<f:layout name="Page"/>
<f:section name="Configuration">
<flux:form id="standard">
<flux:field.input name="settings.claim1" />
<flux:field.input name="settings.claim2" />
<flux:field.inline.fal name="settings.stageImage" maxItems="1" minItems="0" />
</flux:form>
<flux:grid>
<!-- Edit this grid to change the "backend layout" structure -->
<flux:grid.row>
<flux:grid.column colPos="0" name="main"/>
</flux:grid.row>
</flux:grid>
</f:section>
<f:section name="Main">
<div class="page-wrapper">
<f:render partial="Header" section="Content"/>
<f:render partial="Stage" section="Content" arguments="{_all}" />
<f:render partial="Breadcrumb" section="Content"/>
<v:content.render column="0"/>
</div>
</f:section>
</div>
它是我唯一拥有的,只在我的根页面上选择的。所有其他页面都继承该模板。
我必须做什么才能将配置的值继承到子页面?我已经尝试过inherit =&#34; true&#34;对于ViewHelper参考中建议的字段,但我不知道如何处理信息&#34; 如果ConfigurationProvider启用了继承&#34;。
我使用T3 7.6和最新版本的Flux,Fluidpages等。