Project

General

Profile

Actions

Task #95350

closed

Register plugin and module controller actions as array

Added by Simon Schaufelberger over 2 years ago. Updated 4 months ago.

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'],
    ],
    []
);

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Task #102666: Use array for action listClosedOliver Bartsch2023-12-13

Actions
Actions

Also available in: Atom PDF