Actions
Feature #16404
closedflexibilize addPItoST43()
Start date:
2006-07-25
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
Extensions only work with 'css_styled_content' oder 'content (default)' if they use t3lib_extMgm::addPItoST43(). To use another rendering extension an alteration of the function t3lib_extMgm::addTypoScript() is necessary.
Make it more flexible by using a global variable to register the rendering extension:
Replace line 873:
$TYPO3_CONF_VARS['FE']['defaultTypoScript_'.$type.'.']['cssstyledcontent/static/'].=$content
With
$TYPO3_CONF_VARS['FE']['defaultTypoScript_'.$type.'.'][$SomeGlobalVariable].=$content;
(issue imported from #M3930)
Actions