26 lines
684 B
PHP
26 lines
684 B
PHP
<?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 () {
|
|
|
|
\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'
|
|
]
|
|
);
|
|
|
|
})();
|