使用TYPO3扩展名中的专用记录存储页面

时间:2013-04-29 23:13:16

标签: plugins typo3

我用Kickstarter写了一个TYPO3扩展程序,想知道是否可以为“插件”添加一个存储页面。

目前我使用整个页面的常规存储页面,但这不是最好的解决方案。

1 个答案:

答案 0 :(得分:0)

是。使用flexform,您可以提供“常规存储页面”作为插件选项,并为插件保留一个存储文件夹

您需要包含:

 // get data from Flexform:
    $this->pi_initPIflexForm();
// Vars
    $this->showMorelink = $this->pi_getFFvalue($this->cObj->data['pi_flexform'], 'show_morelink', 's_template');

locallang_tca.xml:

                <label index="tt_plugin.pi_flexform.show_morelink">records</label>

flexform_ds.xml:

          <show_morelink>
           <TCEforms>
            <label>LLL:EXT:tt_plugin/locallang_tca.xml:tt_plugin.show_morelink</label>
            <config>
             <type>check</type>
            </config>
           </TCEforms>
          </show_morelink>