根据字段值隐藏后端中的tt_content元素

时间:2015-08-13 14:37:23

标签: php configuration typo3 children

<?php

我有一个名为theme_section_columns的自定义CType,它也有来自tt_content表的子记录。 关系父 - &gt;使用字段tx_theme_tt_content创建子项。 这是配置:

$tca = array(
  .....
    'types' => array(
        'theme_section_columns' => array(
            'showitem' => '
                --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.general;general,
                --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.headers;header,
                tx_theme_tt_content,
                --div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.access,
                --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.visibility;visibility,
                --palette--;LLL:EXT:cms/locallang_ttc.xlf:palette.access;access,
                --div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.extended,
            '
        ),
    .....
    'columns' => array(
      'tx_theme_tt_content' => array(
        'label' => 'LLL:EXT:theme/Resources/Private/Language/Backend.xlf:content_element',
        'config' => array(
          'type' => 'inline',
          'foreign_table' => 'tt_content',
          'foreign_field' => 'tx_theme_tt_content',
          'appearance' => array(
            'useSortable' => TRUE,
            'showSynchronizationLink' => TRUE,
            'showAllLocalizationLink' => TRUE,
            'showPossibleLocalizationRecords' => TRUE,
            'showRemovedLocalizationRecords' => FALSE,
            'expandSingle' => TRUE,
            'enabledControls' => array(
              'localize' => TRUE,
            ),
          ),
          'behaviour' => array(
            'localizationMode' => 'select',
            'mode' => 'select',
            'localizeChildrenAtParentLocalization' => TRUE,
          ),
        ),
      ),
    ),
  ),
);

一切都按预期工作,除了一件事。在后端列表模块中,将显示所有tt_content元素,包括theme_section_columns的子元素。 有没有办法隐藏在列表模块中,在tx_theme_tt_content字段中有值的内容元素?

1 个答案:

答案 0 :(得分:0)

listmod扩展做了我想要的: http://typo3.org/extensions/repository/view/listmod