Bug #56570
No rendering definition for CE / no list for plugins if csc is includes with INCLUDE_TYPOSCRIPT
| Status: | Closed | Start date: | 2014-03-05 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assigned To: | - | % Done: | 0% |
|
| Category: | - | Spent time: | - | |
| Target version: | - | |||
| TYPO3 Version: | 6.2 | Is Regression: | No | |
| PHP Version: | Sprint Focus: | |||
| Complexity: |
Description
If you use
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:css_styled_content/static/setup.txt">
to include csc in a distribution package, all plugins / CE configuration added with
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'T3see.' . $_EXTKEY,
'Slider',
array(
'Slider' => 'show'
),
// non-cacheable actions
array(),
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
or
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'T3see.' . $_EXTKEY,
'Pi1',
array(
'Map' => 'show'
),
// non-cacheable actions
array(),
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_PLUGIN
);
are overridden.
A solution would be to include TypoScript from ExtensionUtility::configurePlugin after ExtensionManagementUtility::addStaticFile.
Related issues