Skip to content

Commit

Permalink
[TASK] Set exclude property for fields of tt_content
Browse files Browse the repository at this point in the history
The exclude property is set for the following fields in the
table tt_content:

- file_collections
- filelink_size
- filelink_sorting
- filelink_sorting_direction

Resolves: #84715
Releases: master
Change-Id: I626d86d4f4f632f6c1c65e177672563a55e96663
Reviewed-on: https://review.typo3.org/56662
Tested-by: TYPO3com <no-reply@typo3.com>
Reviewed-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: Frans Saris <franssaris@gmail.com>
Tested-by: Frans Saris <franssaris@gmail.com>
  • Loading branch information
georgringer authored and fsaris committed Apr 15, 2018
1 parent 080805b commit ca1c88c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
@@ -0,0 +1,22 @@
.. include:: ../../Includes.txt

==============================================================
Important: #84715 - Set exclude property for tt_content fields
==============================================================

See :issue:`84715`

Description
===========

The exclude property is set for the following fields in the
table tt_content:

- `file_collections`
- `filelink_size`
- `filelink_sorting`
- `filelink_sorting_direction`

Access permissions must be adopted if editors need to edit those fields.

.. index:: Backend
4 changes: 4 additions & 0 deletions typo3/sysext/frontend/Configuration/TCA/tt_content.php
Expand Up @@ -955,6 +955,7 @@
]
],
'file_collections' => [
'exclude' => true,
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:file_collections',
'config' => [
'type' => 'group',
Expand All @@ -975,6 +976,7 @@
])
],
'filelink_size' => [
'exclude' => true,
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:filelink_size',
'config' => [
'type' => 'check',
Expand All @@ -986,6 +988,7 @@
]
],
'filelink_sorting' => [
'exclude' => true,
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:filelink_sorting',
'config' => [
'type' => 'select',
Expand All @@ -1002,6 +1005,7 @@
]
],
'filelink_sorting_direction' => [
'exclude' => true,
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:filelink_sorting_direction',
'config' => [
'type' => 'select',
Expand Down

0 comments on commit ca1c88c

Please sign in to comment.