69 lines
2.2 KiB
PHP
69 lines
2.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
'ctrl' => [
|
|
'title' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout',
|
|
'label' => 'title',
|
|
'descriptionColumn' => 'description',
|
|
'tstamp' => 'tstamp',
|
|
'crdate' => 'crdate',
|
|
'versioningWS' => true,
|
|
'groupName' => 'system',
|
|
'sortby' => 'sorting',
|
|
'delete' => 'deleted',
|
|
'enablecolumns' => [
|
|
'disabled' => 'hidden',
|
|
],
|
|
'typeicon_classes' => [
|
|
'default' => 'mimetypes-x-backend_layout',
|
|
],
|
|
'selicon_field' => 'icon',
|
|
'security' => [
|
|
'ignorePageTypeRestriction' => true,
|
|
],
|
|
],
|
|
'columns' => [
|
|
'title' => [
|
|
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.title',
|
|
'config' => [
|
|
'type' => 'input',
|
|
'size' => 25,
|
|
'max' => 255,
|
|
'required' => true,
|
|
],
|
|
],
|
|
'config' => [
|
|
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.config',
|
|
'config' => [
|
|
'type' => 'text',
|
|
'renderType' => 'belayoutwizard',
|
|
],
|
|
],
|
|
'icon' => [
|
|
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.icon',
|
|
'exclude' => true,
|
|
'config' => [
|
|
'type' => 'file',
|
|
'allowed' => 'common-image-types',
|
|
'relationship' => 'manyToOne',
|
|
'appearance' => [
|
|
'createNewRelationLinkTitle' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:images.addFileReference',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
'types' => [
|
|
'1' => [
|
|
'showitem' => '
|
|
--div--;core.form.tabs:general,
|
|
title,icon,config,
|
|
--div--;core.form.tabs:access,
|
|
hidden,
|
|
--div--;core.form.tabs:notes,
|
|
description,
|
|
--div--;core.form.tabs:extended,
|
|
',
|
|
],
|
|
],
|
|
];
|