Actions
Task #95350
closedRegister plugin and module controller actions as array
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Extbase
Target version:
-
Start date:
2021-09-24
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
Instead of this:
ExtensionUtility::configurePlugin(
'BlogExample',
'Content',
[
ContentController::class => 'list,edit,update,delete',
],
[]
);
use this:
ExtensionUtility::configurePlugin(
'BlogExample',
'Content',
[
ContentController::class => ['list', 'edit', 'update', 'delete'],
],
[]
);
Actions