-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_localconf.php
40 lines (34 loc) · 1.69 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
<?php
defined('TYPO3_MODE') || die('Access denied.');
call_user_func(
function() {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Eww.SubhhOaDashboard',
'RepositoryList',
[
'Repository' => 'list'
],
// non-cacheable actions
[
'Repository' => 'list'
]
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Eww.SubhhOaDashboard',
'RepositoryDetails',
[
'Repository' => 'show'
],
// non-cacheable actions
[
'Repository' => 'show'
]
);
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include']['repositoryList'] = \Eww\SubhhOaDashboard\Controller\EidController::class . '::listRepositories';
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include']['getRecordCountTimeRange'] = \Eww\SubhhOaDashboard\Controller\EidController::class . '::getRecordCountTimeRange';
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include']['getRecordLicence'] = \Eww\SubhhOaDashboard\Controller\EidController::class . '::getRecordLicence';
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include']['getRepositoryAvailability'] = \Eww\SubhhOaDashboard\Controller\EidController::class . '::getRepositoryAvailability';
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include']['getRecordDocumentTypes'] = \Eww\SubhhOaDashboard\Controller\EidController::class . '::getRecordDocumentTypes';
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include']['getRepositorySets'] = \Eww\SubhhOaDashboard\Controller\EidController::class . '::getRepositorySets';
}
);