Task #95350
Updated by Simon Schaufelberger about 3 years ago
Instead of this: <pre><code class="php"> ExtensionUtility::configurePlugin( 'BlogExample', 'Content', [ ContentController::class => 'list,edit,update,delete', ], [] ); </code></pre> use this: <pre><code class="php"> ExtensionUtility::configurePlugin( 'BlogExample', 'Content', [ ContentController::class => ['list', 'edit', 'update', 'delete'], ], [] ); </code></pre>