| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- return [
- 'ctrl' => [
- 'title' => 'LLL:EXT:begriffmgt/Resources/Private/Language/locallang.xlf:tx_begriffmgt_domain_model_url',
- 'label' => 'title',
- 'tstamp' => 'tstamp',
- 'crdate' => 'crdate',
- 'cruser_id' => 'cruser_id',
- 'versioningWS' => true,
- 'origUid' => 't3_origuid',
- 'languageField' => 'sys_language_uid',
- 'transOrigPointerField' => 'l10n_parent',
- 'transOrigDiffSourceField' => 'l10n_diffsource',
- 'delete' => 'deleted',
- 'enablecolumns' => [
- 'disabled' => 'hidden',
- 'starttime' => 'starttime',
- 'endtime' => 'endtime',
- ],
- 'searchFields' => 'title',
- 'iconfile' => 'EXT:begriffmgt/Resources/Public/Icons/chatbot-icon.svg',
- ],
- 'interface' => [
- 'showRecordFieldList' => 'title, terms',
- ],
- 'types' => [
- '1' => ['showitem' => 'title, terms'],
- ],
- 'columns' => [
- 'title' => [
- 'exclude' => 0,
- 'label' => 'LLL:EXT:begriffmgt/Resources/Private/Language/locallang.xlf:tx_begriffmgt_domain_model_url.title',
- 'config' => [
- 'type' => 'input',
- 'size' => 30,
- 'eval' => 'trim,required'
- ],
- ],
- 'terms' => [
- 'exclude' => 1,
- 'label' => 'Terms',
- 'config' => [
- 'type' => 'inline',
- 'foreign_table' => 'tx_begriffmgt_domain_model_term',
- 'foreign_field' => 'url',
- 'maxitems' => 9999,
- 'appearance' => [
- 'collapseAll' => 1,
- 'levelLinksPosition' => 'top',
- 'showSynchronizationLink' => 1,
- 'showPossibleLocalizationRecords' => 1,
- 'showAllLocalizationLink' => 1
- ],
- ],
- ],
- ],
- ];
|