rename TSconfig

This commit is contained in:
Christian Seyfferth 2020-12-04 23:30:23 +01:00
parent 4802589e38
commit c0fa206612
8 changed files with 133 additions and 3 deletions

View File

@ -4,11 +4,11 @@
mod {
web_layout {
BackendLayouts {
example {
title = LLL:EXT:sitepackage/Resources/Private/Language/locallang_be.xlf:backend_layout.example
default {
title = LLL:EXT:sitepackage/Resources/Private/Language/locallang_be.xlf:backend_layout.default
config {
backend_layout {
colCount = 1
colCount = 2
rowCount = 1
rows {
1 {
@ -17,6 +17,11 @@ mod {
name = LLL:EXT:sitepackage/Resources/Private/Language/locallang_be.xlf:backend_layout.column.normal
colPos = 0
}
2 {
name = LLL:EXT:sitepackage/Resources/Private/Language/locallang_be.xlf:backend_layout.column.marginal
colPos = 1
width = 25%
}
}
}
}

View File

@ -0,0 +1,37 @@
#
# BACKENDLAYOUT: EXAMPLE
#
mod {
web_layout {
BackendLayouts {
home {
title = LLL:EXT:sitepackage/Resources/Private/Language/locallang_be.xlf:backend_layout.home
config {
backend_layout {
colCount = 1
rowCount = 2
rows {
1 {
columns {
1 {
name = LLL:EXT:sitepackage/Resources/Private/Language/locallang_be.xlf:backend_layout.column.normal
colPos = 0
}
}
}
2 {
columns {
1 {
name = LLL:EXT:sitepackage/Resources/Private/Language/locallang_be.xlf:backend_layout.column.footer
colPos = 200
}
}
}
}
}
}
icon = EXT:sitepackage/Resources/Public/Icons/BackendLayouts/example.svg
}
}
}
}

View File

@ -0,0 +1,88 @@
# ###
# BE module settings
# ###
mod {
web_list {
enableDisplayBigControlPanel = activated
enableClipBoard = activated
}
}
# ###
# BE settings
# ###
options {
# clear cache for all usergroups
clearCache.pages = 1
# allow creating of folders in element browser (EB)
createFoldersInEB = 1
# show upload fields at top of EB
uploadFieldsInTopOfEB = 1
pageTree {
# show pid in page tree
showPageIdWithTitle = 1
showDomainNameWithTitle = 1
}
}
[backend.user.isAdmin == true]
options {
# admin user are allowed to clear system cache
clearCache.system = 1
}
[end]
setup {
# default settings, can be changed by user
default {
lang = de
thumbnailsByDefault = 1
extendedView = 1
}
# override settings, cannot be changed by user
override {
edit_docModuleUpload = 0
extendedView = 1
}
}
# ###
# field default settings
# ###
TCAdefaults {
tt_content {
# show file size by default
filelink_size = 1
# set better defaults
imagecols = 1
imageorient = 0
image_zoom = 1
}
}
# ###
# admin panel configuration
# ###
admPanel {
enable.edit = 1
enable.preview = 1
}
# ###
# usersgroup access rights
# ###
page.TCEMAIN {
permissions {
# group has all rights
group = 31
# uid of group "Global - Zugriff"
# @ToDo: this has to be checked after migration
groupid = 4
}
}