Actions
Bug #34226
closedA CE's field "layout" is missing when the CE's type is "plugin / list"
Status:
Rejected
Priority:
Must have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2012-02-24
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
I don't know if this is might be a bug (tested with latest 4.5 and 4.6):
Usually, each content element owns a backend field called "layout". But when the content element is a plugin (type: list), this field is missing and cannot be edited.
A workaround for me to get the field "layout" editable is:
- expand the table "page content" in list module
- add "layout" in "set fields"
- edit all content elements at once (using the pencil next to "layout" in column header)
after this, the field "layout" is also visible / editable for the plugin ce's.
Kind reagards, Jan
Updated by Jigal van Hemert over 12 years ago
- Status changed from New to Rejected
Most extensions have a line in ext_tables.php which like:
$TCA['tt_content']['types']['list']['subtypes_excludelist'][$_EXTKEY.'_pi1']='layout,select_key';
This removes the layout (and select_key) field from the BE forms. The extension author decided to not use this field.
Actions