-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathext_localconf.php
49 lines (42 loc) · 1.66 KB
/
ext_localconf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
declare(strict_types=1);
defined('TYPO3') or die('Access denied.');
(function () {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Newspage',
'List',
[\B13\Newspage\Controller\NewsController::class => 'list'],
[\B13\Newspage\Controller\NewsController::class => 'list'],
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Newspage',
'Latest',
[\B13\Newspage\Controller\NewsController::class => 'latest'],
[],
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Newspage',
'Teaser',
[\B13\Newspage\Controller\NewsController::class => 'teaser'],
[],
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
B13\Newspage\Service\FilterService::registerFilter(
'Date',
\B13\Newspage\Filter\DateFilter::class,
'LLL:EXT:newspage/Resources/Private/Language/locallang_be.xlf:news.date'
);
B13\Newspage\Service\FilterService::registerFilter(
'Category',
\B13\Newspage\Filter\CategoryFilter::class,
'LLL:EXT:newspage/Resources/Private/Language/locallang_be.xlf:category',
'EXT:newspage/Configuration/FlexForms/Filter/Category.xml'
);
B13\Newspage\Service\FilterService::registerFilter(
'Categories',
\B13\Newspage\Filter\CategoriesFilter::class,
'LLL:EXT:newspage/Resources/Private/Language/locallang_be.xlf:filter.categories'
);
})();