Project

General

Profile

Feature #92705

Updated by Daniel Siepmann over 3 years ago

Right now it is only possible to re configure a plugin by calling _\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin_ a 2nd time. 
 Also in order to change the default Controller-Action-Combination one needs to unset _$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['extbase']['extensions']['ExtensionName']['plugins']['PluginName']_ upfront. 

 That is very clunky and a clean API to configure and reconfigure a plugin would be much better. 
 Also Extbase could use a clean API in order to retrieve those info, instead of accessing a _TYPO3_CONF_VARS_ array. 

 The new API should also only be intended for use within _ext_localconf.php_, not during runtime.

Back