-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathext_localconf.php
46 lines (42 loc) · 1.38 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
<?php
defined('TYPO3') or die();
call_user_func(
function () {
/**
* Array with available plugins and their configuration
*/
$plugins = [
'list' => [
'cacheable' => 'list',
'nonCacheable' => 'list'
],
'show' => [
'cacheable' => 'show',
'nonCacheable' => ''
],
];
foreach ($plugins as $plugin => $pluginOptions) {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'MdNewsAuthor',
$plugin,
[
\Mediadreams\MdNewsAuthor\Controller\NewsAuthorController::class => $pluginOptions['cacheable'],
],
// non-cacheable actions
[
\Mediadreams\MdNewsAuthor\Controller\NewsAuthorController::class => $pluginOptions['nonCacheable'],
]
);
}
/**
* Add page TsConfig
*/
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
'<INCLUDE_TYPOSCRIPT: source="FILE:EXT:md_news_author/Configuration/TsConfig/Page/TCEFORM.tsconfig">'
);
/**
* Extend ext:news
*/
$GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['classes']['Domain/Model/News'][] = 'md_news_author';
}
);