Actions
Bug #33457
closedCan't remove block format "Container" in RTE
Status:
Closed
Priority:
Should have
Assignee:
Category:
RTE (rtehtmlarea + ckeditor)
Target version:
Start date:
2012-01-26
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
I want to remove the format option "Container" which wraps a text with a div-tag. Editors do not know what this is and are irritated. I thought it could be removed with this configuration:
RTE.default.buttons.formatblock.removeItems = div
But the block format is shown in the selectbox, because I use the button "indent":
typo3\sysext\rtehtmlarea\extensions\BlockElements\class.tx_rtehtmlarea_blockelements.php, line 137 - 140
// Add div element if indent is configured in the toolbar if (in_array('indent', $this->toolbar) || in_array('outdent', $this->toolbar)) { $blockElementsOrder = array_merge($blockElementsOrder, array('div')); }
When I remove this code, the "Container" disappears, and the indent option still works (for normal text and for lists). But I doubt this is the solution ;)
Actions