Task #95350
closedRegister plugin and module controller actions as array
100%
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'],
],
[]
);
Updated by Simon Schaufelberger about 3 years ago
- Subject changed from Register plugin controller actions as array to Register plugin and module controller actions as array
Updated by Gerrit Code Review about 3 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/71232
Updated by Gerrit Code Review about 3 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/71232
Updated by Gerrit Code Review about 3 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/71232
Updated by Gerrit Code Review almost 3 years ago
Patch set 4 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/71232
Updated by Gerrit Code Review almost 3 years ago
Patch set 5 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/71232
Updated by Gerrit Code Review over 2 years ago
Patch set 6 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/71232
Updated by Simon Schaufelberger over 2 years ago
- Status changed from Under Review to Rejected
Updated by Simon Schaufelberger 12 months ago
- Related to Task #102666: Use array for action list added
Updated by Gerrit Code Review 12 months ago
- Status changed from Rejected to Under Review
Patch set 3 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/82182
Updated by Oliver Bartsch 11 months ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset be6b23f16ec7d5010a1fff9b64577e44d4be90fd.