Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v10 here: TYPO3 ELTS.
TCEMAIN
Configuration for the TYPO3 Core Engine (DataHandler). For general information, see the according section of TYPO3 Explained.
Properties
clearCacheCmd
clearCacheCmd
-
- Type
- List of integers,
all
,pages
or tags
This allows you to have the frontend cache for additional pages cleared when saving to some page or branch of the page tree.
It it possible to trigger clearing of all caches or just the pages cache. It is also possible to target precise pages either by referring to their ID numbers or to tags that are attached to them.
Attaching tags to page cache is described in the TypoScript Reference.
Example: Clear the cache for certain pages when a record is changed
TCEMAIN {
# Clear the cache for page uid 12 and 23 when saving a record in this page
clearCacheCmd = 12, 23
# Clear all frontent page caches of pages
clearCacheCmd = pages
# Clear ALL caches
clearCacheCmd = all
# Clear cache for all pages tagged with tag "pagetag1"
clearCacheCmd = cacheTag:pagetag1
}
Note
In order for the pages
and all
commands to work for non-admin users,
make sure to set options.
or options.
accordingly
in the user TSconfig.
clearCache_disable
clearCache_disable
-
- Type
- boolean
If set, then the automatic clearing of page cache when records are edited etc. is disabled. This also disables the significance of the two options clearCache_pageSiblingChildren and clearCache_pageGrandParent
clearCache_pageGrandParent
clearCache_pageGrandParent
-
- Type
- boolean
If set, then the grand parent of a page being edited will have the page cache cleared.
clearCache_pageSiblingChildren
clearCache_pageSiblingChildren
-
- Type
- boolean
If set, then children of all siblings of a page being edited will have the page cache cleared.
Default is that when a page record is edited, the cache for itself, the parent, and siblings (same level) is cleared.
disableHideAtCopy
disableHideAtCopy
-
- Type
- boolean
Disables the hideAtCopy TCA feature if configured for the table.
Example: Do not hide pages when they are copy-pasted
TCEMAIN.table.pages {
# Pages will *not* have "(copy)" appended:
disablePrependAtCopy = 1
# Pages will *not* be hidden upon copy:
disableHideAtCopy = 1
}
These settings adjust that a page which is copied will neither have "(copy X)" appended nor be hidden.
The last page in this tree, labeled "Test", is used as original to be copied. The first sub page was copied using the settings from the above example: It is labeled "Test" and is visible exactly like the original page. The page "Test (copy 2)" in the middle was in contrast copied in default mode: The page is hidden and the "(copy X)" suffix is added, if another page with the same named existed already.
Example: Apply disableHideAtCopy as default to all tables
TCEMAIN.default {
disableHideAtCopy = 1
}
disablePrependAtCopy
disablePrependAtCopy
-
- Type
- boolean
Disable the prependAtCopy TCA feature if configured for the table.
The word "prepend" is misleading. The "(copy)" label is actually appended to the record title.
Example: Do not append the "(copy)" label to newly copied pages
TCEMAIN.table.pages {
# Pages will *not* have "(copy)" appended:
disablePrependAtCopy = 1
# Pages will *not* be hidden upon copy:
disableHideAtCopy = 1
}
These settings adjust that a page which is copied will neither have "(copy X)" appended nor be hidden.
The last page in this tree, labeled "Test", is used as original to be copied. The first sub page was copied using the settings from the above example: It is labeled "Test" and is visible exactly like the original page. The page "Test (copy 2)" in the middle was in contrast copied in default mode: The page is hidden and the "(copy X)" suffix is added, if another page with the same named existed already.
Example: Apply disablePrependAtCopy as default to all tables
TCEMAIN.default {
disablePrependAtCopy = 1
}
linkHandler
linkHandler
-
- Type
- array of link handler configurations
Contains an array of link handler configurations.
Attention
The keys in this array uniquely identify the type of link and are used in the TYPO3 link format, for example
t3://
. Therefore the key must never be changed or all existing links in the content will stop working.record?identifier=my_ content&uid=123 handler
- Fully qualified name of the class containing the backend link handler.
configuration
- Configuration for the link handler, depends on the
handler
. For\TYPO3\
CMS\ Recordlist\ Link Handler\ Record Link Handler configuration.
must be defined.table scan
/Before scan
After - Define the order in which handlers are queried when determining the responsible tab for editing an existing link.
display
/Before display
After - Define the order of how the various tabs are displayed in the link browser.
Example: Display an additional tab in the linkbrowser
The following page TSconfig display an additional tab with the label
as
title in the linkbrowser. It then saves the link in the format
t3://
. To render the link in the
frontend you need to define the same key in the TypoScript setup
config.
.
See also
For a complete example see also the Record link tutorial in TYPO3 Explained.
TCEMAIN.linkHandler.my_content {
handler = TYPO3\CMS\Recordlist\LinkHandler\RecordLinkHandler
label = LLL:EXT:my_extension/Resources/Private/Language/locallang.xlf:link.customTab
configuration {
table = tx_myextension_content
}
scanBefore = page
}
permissions
everybody
permissions.everybody
-
- Type
- list of strings or integer 0-31
- Default
- 0
Default permissions for everybody who is not the owner user or member of the owning group, key list:
show
,edit
,delete
,new
,editcontent
.Alternatively, it is allowed to set an integer between 0 and 31, indicating which bits corresponding to the key list should be set:
show = 1
,edit = 2
,delete = 4
,new = 8
,editcontent = 16
.
Example: Set permissions defaults so that everybody can see the page
TCEMAIN.permissions { # Everybody can at least see the page, normally everybody can do nothing everybody = show }
Copied!The page "Community" was created with the settings from the example above. Compared to the two other pages created with default permissions you can see the effect: "Everybody" has read access:
group
permissions.group
-
- Type
- list of strings or integer 0-31
- Default
- show,edit,new,editcontent
Default permissions for group members, key list:
show
,edit
,new
,editcontent
.Alternatively, it is allowed to set an integer between 0 and 31, indicating which bits corresponding to the key list should be set:
show = 1
,edit = 2
,delete = 4
,new = 8
,editcontent = 16
Example: Set permission defaults so that the group can do anything but delete a page
TCEMAIN.permissions {
# Group can do anything, normally "delete" is disabled
group = 31
}
The page "Community" was created with the settings from the example above. Compared to the two other pages created with default permissions you can see the effect: The Backend Group can now also delete the page by default:
groupid
permissions.groupid
-
- Type
- positive integer
Hard code the default group of new and copied pages: The default user group is the "main group" of the backend user - the group in the very top of the users group-list. This setting allows to override this default and set a specific group uid.
Example: Set default user group for permissions on new pages
TCEMAIN {
# Owner be_groups UID for new pages
permissions.groupid = 3
}
In this instance, backend group with UID 3 is "test_group". With the configuration above a new page would be created with this group setting instead of the default, even if a user who is not member of that group creates the page:
user
permissions.user
-
- Type
- list of strings or integer 0-31
- Default
- show,edit,delete,new,editcontent
Default permissions for owner user, key list:
show
,edit
,delete
,new
,editcontent
.Alternatively, it is allowed to set an integer between 0 and 31, indicating which bits corresponding to the key list should be set:
show = 1
,edit = 2
,delete = 4
,new = 8
,editcontent = 16
.
Example: Set permission defaults so that the pages owner can do anything
TCEMAIN.permissions {
# User can do anything, this is identical to the default value
user = 31
}
userid
permissions.userid
-
- Type
- positive integer
Hard code the default owner of new and copied pages: The default owner is usually the user that creates / copies the page, this setting allows to override this.
Example: Set default user for permissions on new pages
TCEMAIN {
# Owner be_users UID for new pages
permissions.userid = 2
}
In this instance, backend user with UID 2 is "test". With the configuration above a new page would be created with this owner setting instead of the default, even if another user creates the page:
preview
preview
-
- Type
- array
Configure preview link generated for the save+view button and other frontend view related buttons in the backend. This allows to have different preview URLs depending on the record type. A common use case is to have previews for blog or news records, and this feature allows you to define a different preview page for content elements as well, which might be handy if those are stored in a sysfolder.
TCEMAIN.preview { disableButtonForDokType = 199, 254, 255 <table name> { previewPageId = 123 useDefaultLanguageRecord = 0 fieldToParameterMap { uid = tx_myext_pi1[showUid] } additionalGetParameters { tx_myext_pi1.special = HELLO # results in tx_myext_pi1[special] } } }
Copied!The
preview
is the uid of the page to use for preview. If this setting is omitted the current page will be used. If the current page is not a normal page, the root page will be chosen.Page Id The
disable
setting allows you to disable the preview button for a given list of doktypes. If none are configured, this defaults to: 199, 254, 255 (Spacer, Folder and Recycler).Button For Dok Type The
use
defaults toDefault Language Record 1
and ensures that translated records will use the uid of the default record for the preview link. You may disable this, if your extension can deal with the uid of translated records.The
field
is a mapping which allows you to select fields of the record to be included as GET-parameters in the preview link. The key specifies the field name and the value specifies the GET-parameter name.To Parameter Map Finally
additional
allow you to add arbitrary GET-parameters and even override others. If the plugin on your target page shows a list of records by default you will also need something likeGet Parameters tx_
to ensure the record details are displayed.myext_ pi1. action = show The core automatically sets the "no_cache" and the "L" parameter. The language matches the language of the current record. You may override each parameter by using the
additional
configuration option.Get Parameters Note
Make sure not to set
options.
, otherwise the save+view button will not be displayed when editing records of your table.save Doc View.<table name> = 0 Attention
The configuration has to be defined for the page containing the records and
preview
(for example sysfolder holding the records is located outside of your root)Page Id
table
Processing options for tables. The table name is added, for instance TCEMAIN.
or TCEMAIN.
.
It is also possible to set a default value for all tables, for example
TCEMAIN.
.
translateToMessage
translateToMessage
-
- Type
- string
- Default
Translate to %s:
Defines the string that will be prepended to some field values if you copy an element to another language version. This applies to all fields where the TCA columns property l10n_mode is set to
prefix
.Lang Title The special string "%s" will be replaced with the language title.
You can globally disable the prepending of the string by setting
translate
to an empty string. You can disable the message to a certain field by setting theTo Message l10n_
to an empty string.mode
Example: Set a German prefix for newly translated records
TCEMAIN {
translateToMessage = Bitte in "%s" übersetzen:
}
Example: Disable the "[Translate to ...]" prefix
TCEMAIN {
translateToMessage =
}