Actions
Feature #24006
closedMake FlexForms editable via TSConfig and group access lists
Start date:
2010-11-10
Due date:
% Done:
0%
Estimated time:
PHP Version:
5.2
Tags:
Complexity:
Sprint Focus:
Description
Changes in this diff make it possible to configure FlexForms like normal TCA forms. Whole configuration can be done via TSConfig. And single FlexForm fields can also be disabled via group access lists.
Possible are:
============================================
- remove complete flexform tabs
- change flexform tab title
- remove single fields from a sheet (tab)
- change label of a single field
- change size, type, minitems, ... of a single field
- add, remove, keep and rename items in a select field
Syntax: ============================================
TCEFORM.tt_content.pi_flexform.[ext_key].[sheet_key] {
- Remove complete sheet (tab)
disabled = 1
- Change sheet title
title = LLL:fileadmin/locallang.xml:new_title
}
TCEFORM.tt_content.pi_flexform.[ext_key].[sheet_key].[field_key] {
- Change label
label = LLL:fileadmin/locallang.xml:new_label
- Change configuration
config {
size = 20
minitems = 1
...
}
- Rename select items
altLabels {
item = label
}
- Add select items
addItems {
item = label
}
- Remove select items
removeItems = item1,item2
- Filter select items
keepItems = item1,item2
}
(issue imported from #M16334)
Files
Actions