TSconfig
From TYPO3Wiki
Choose what tags you need:
Category:Topic
Contents |
TSConfig Top Level Objects
| Property: | Data type: | Description: |
| mod | MOD | Options for the backend modules. For example menu items in the page view can be blinded, the columns renamed or blinded, and the backend in general configured
Notice that these options are merged with settings from User TSconfig (TLO: mod) which takes precedence. Examples: # Show only modules "Columns" and "Language", hide "Quickedit" and "Page Information"
mod.web_layout.menu.function {
1 = 1
2 = 1
0 = 0
3 = 0
}
# Only show columns Center and Right, hide the others mod.SHARED.colPos_list = 0,2 |
| RTE | TSref/RTE | Configured the RTE |
| TCEMAIN | TSref/TCEMAIN | Defines options for the whole table like permissions (to whom belongs a new page), cache options, lables, copying of tablke elements.
Example: # All news Pages should be created in Group 3
TCEMAIN {
# Owner be_groups UID for new pages:
permissions.groupid = 3
}
|
| TCEFORM | TCEFORM | Configures the field of a table to view / hide them, to define default values and change the items shown in select fields.
Example: #hide Subtitle in Page if its usage was not defined in TypoScript TCEFORM.pages.subtitle.disabled = 1 #add a new Default Doctype: TCEFORM.pages.doktype.addItems.123 = Extra Page Type |
| TSFE | TSFE | Defines constants and jumpurls |
| TCAdefaults.[table].[field] | Set a default value for a certain field
Example: #Dont hide new news: TCAdefaults.tt_news.hidden = 0 | |
| user | Deprecated, do not use. | |
| tx_[extension key with no underscore] | Reserved Space for extensions |
[page]
reference
http://typo3.org/documentation/document-library/references/doc_core_tsconfig/4.1.0/view/
howtos
disable javascript alerts in backend
put this definition in User-TSConfig
# this option defines via an bitmask what to enable or disable options.alertPopups = 255 (default) # this options are possible: 1 - typeChange 2 - copy/move/paste 4 - delete 8 - frontend editing 128 - other - reserverd but not used
# example: # disable warning by typeChange and copy/move/paste options.alertPopups = 255 - 1 -2 = 252
# for programmers: $GLOBALS['BE_USER']->jsConfirmation($BITMASK) # have an look in t3lib_userauthgroup.php