升级TYPO3 6.2到TYPO3 7.6'页面布局'后不显示在后端

时间:2017-04-25 05:46:52

标签: typo3

enter image description here

版本:

let text='JSX transcoders will preserve the & character\u2014to '…

我已经在typoscript中修改过,也可以从'Appearance'BE Tab中选择'fluidpage'。

TYPO3 :-  7.6.18
Flux:  7.4.0
Vhs: - 3.0.1
Fluidpages: 3.6.0
Fluidcontent: 4.4.1

enter image description here

但仍未在后端显示“页面布局”。

1 个答案:

答案 0 :(得分:1)

确保您在扩展程序ext_localconf.php中注册了将您的页面模板作为提供程序注册的扩展程序:

\FluidTYPO3\Flux\Core::registerProviderExtensionKey('Vendor.MyExt', 'Page');

然后将您的页面模板放在Resources/Private/Templates/Page下,您应该没问题。您的模板至少需要配置和内容部分:

<f:layout name="Page/Default" />
<f:section name="Configuration">
    <flux:form id="MyPage" />
    <flux:form.option name="icon" value="EXT:my_ext/Resources/Public/Icons/PageIcon.jpg" />
    // Additional configuration
</f:section>

<f:section name="Content">
    //render the content
</f:section>
相关问题