2017-12-18 16 views
0

나는 TYPO3 프론트 엔드 플러그인을 가지고 있고 이제 "목록"컨트롤러를 표시하는 두 가지 다른 방법이 필요합니다. 이것을 어떻게 할 수 있습니까?TYPO3의 다른 레이아웃에서 프론트 엔드 플러그인을 표시하는 방법은 무엇입니까?

+1

여러 가지 방법이 있습니다. 질문 : 편집자가 디플레이의 종류를 제어/설정해야합니까? 이 경우 플러그인과 함께이 설정을 테이블 tt_content에 저장해야합니다. feks pi_flexform. – jokumer

+0

예 어떤 레이아웃이 표시되는지 결정할 수 있어야합니다. – Felix

답변

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

나는 그래서이 여전히 관련이 100 % 아니다 동안이 사용하지 않은,은 API 문서는 여전히 생각을 할 수 있다고 제안 플러그인 기본 설정을 전환하면 구성 변수를 읽음으로써 사용할 템플릿을 결정할 수 있습니다.

+0

페이지에 플러그인을 추가하고 다른 액션을 호출 할 때 플러그인에게 어떻게 알릴 수 있습니까? – Felix

+1

FlexForm을 사용하여 위의 대답에서 설명한대로 설정을 추가 할 수 있습니다. – mrwienh