forked from greenfieldr/golb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_localconf.php
49 lines (44 loc) · 1.04 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
if (!defined('TYPO3_MODE')) {
die ('Access denied.');
}
$boot = function($packageKey) {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Blog.' . $packageKey,
'Sorting',
array(
'Sorting' => 'sortBy'
),
array(
'Sorting' => 'sortBy'
)
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Blog.' . $packageKey,
'Blog',
array(
'Blog' => 'latest, list'
),
array(
'Blog' => 'list'
)
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Blog.' . $packageKey,
'ViewCount',
array(
'ViewCount' => 'countView'
),
array(
'ViewCount' => 'countView'
)
);
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass'][] =
'EXT:golb/Classes/Hook/SetBackendLayout.php:Blog\Golb\Hook\SetBackendLayout';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects']['TYPO3\\CMS\\Extbase\\Domain\\Model\\Category'] = array(
'className' => 'Blog\\Golb\\Domain\\Model\\Category',
);
};
/** @var string $_EXTKEY */
$boot($_EXTKEY);
unset($boot);