Breaking: #88496 - Method getSwitchableControllerActions has been removed
See forge#88496
Description
The abstract method
\TYPO3\
has been removed in favor of
\TYPO3\
.
While the method name changes, the expected implemented functionality stays the same.
Impact
Method
get
will no longer be called. Instead
get
is expected
to be implemented by classes that extend
\TYPO3\
.
Affected Installations
All installations that have custom configuration managers that extend
\TYPO3\
.
Migration
Rename method
get
to
get
to be TYPO3 >= 10 compatible.
To stay compatible with both version 10 and lower, simply implement both methods and call
get
from within
get
.
Example:
protected function getSwitchableControllerActions($extensionName, $pluginName)
{
return $this->getControllerConfiguration($extensionName, $pluginName);
}