bookmark-pages/ext_localconf.php

26 lines
684 B
PHP
Raw Normal View History

2021-08-16 16:15:21 +02:00
<?php
/*
* This file is part of the package buepro/bookmark_pages.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
defined('TYPO3') or die('Access denied.');
(function () {
2021-08-17 19:45:38 +02:00
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'BookmarkPages',
'Bookmarks',
[
\WapplerSystems\BookmarksLikesRatings\Controller\BookmarksController::class => 'index, bookmark, delete, listEntries'
],
[
\WapplerSystems\BookmarksLikesRatings\Controller\BookmarksController::class => 'bookmark, delete, listEntries'
]
);
2021-08-16 16:15:21 +02:00
})();