나는 TYPO3 프론트 엔드 플러그인을 가지고 있고 이제 "목록"컨트롤러를 표시하는 두 가지 다른 방법이 필요합니다. 이것을 어떻게 할 수 있습니까?TYPO3의 다른 레이아웃에서 프론트 엔드 플러그인을 표시하는 방법은 무엇입니까?
0
A
답변
2
아래와 같이 프론트 엔드 플러그인에 flexform
을 사용해야합니다.
귀하의 ext_tables.php 파일에 있습니다.
//extenstion name
$extensionName = \TYPO3\CMS\Core\Utility\GeneralUtility::underscoredToUpperCamelCase($_EXTKEY);
//plugin integration
$frontendpluginName = 'Plugin name';
$pluginSignature = strtolower($extensionName) . '_'.strtolower(
$frontendpluginName
);
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue(
$pluginSignature,
'FILE:EXT:' . $_EXTKEY . '/Configuration/FlexForms/configure.xml'
);
지금이 경로 /Configuration/FlexForms/
<T3DataStructure>
<sheets>
<!--
################################
SHEET General Settings
################################
-->
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>General</sheetTitle>
</TCEforms>
<type>array</type>
<el>
<!-- View -->
<settings.layout>
<TCEforms>
<label>Select Frontend Layout</label>
<config>
<type>select</type>
<items>
<numIndex index="0">
<numIndex index="0">Layout 1</numIndex>
<numIndex index="1">1</numIndex>
</numIndex>
<numIndex index="1">
<numIndex index="0">Layout 2</numIndex>
<numIndex index="1">2</numIndex>
</numIndex>
</items>
<size>10</size>
<minitems>0</minitems>
<maxitems>1</maxitems>
<suppress_icons>1</suppress_icons>
</config>
</TCEforms>
</settings.layout>
</el>
</ROOT>
</sDEF>
</sheets>
</T3DataStructure>
이제
아래와 같은 프론트 엔드 템플릿 파일에서이 값을 사용에 configure.xml
파일을 만듭니다. 당신이 필요한 경우
public function listAction() {
{your_code}
$this->view->setTemplatePathAndFilename(
'typo3conf/ext/' .
$this->request->getControllerExtensionKey() .
'/{path_to}/OtherTemplate.html');
$this->view->assign(...);
}
:
<f:if condition="{settings.layout} == 1">
<f:then>
Layout 1 html
</f:then>
<f:else>
Layout 2 html
</f:else>
</f:if>
1
여러 가지 방법이 있습니다. 질문 : 편집자가 디플레이의 종류를 제어/설정해야합니까? 이 경우 플러그인과 함께이 설정을 테이블 tt_content에 저장해야합니다. feks pi_flexform. – jokumer
예 어떤 레이아웃이 표시되는지 결정할 수 있어야합니다. – Felix