-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathext_localconf.php
61 lines (52 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');
tx_rnbase::load('tx_rnbase_util_SearchBase');
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass'][] = 'System25\T3stores\Hook\TceHook';
tx_rnbase_util_Extensions::addService($_EXTKEY, 't3stores' /* sv type */, 'System25\T3stores\Service\PromotionSrv' /* sv key */,
array(
'title' => 'Promotion', 'description' => 'Handles promotion', 'subtype' => 'promotion',
'available' => TRUE, 'priority' => 50, 'quality' => 50,
'os' => '', 'exec' => '',
'className' => 'System25\T3stores\Service\PromotionSrv',
)
);
tx_rnbase_util_Extensions::addService($_EXTKEY, 't3stores' /* sv type */, 'System25\T3stores\Service\ProductSrv' /* sv key */,
array(
'title' => 'Product', 'description' => 'Handles products', 'subtype' => 'product',
'available' => TRUE, 'priority' => 50, 'quality' => 50,
'os' => '', 'exec' => '',
'className' => 'System25\T3stores\Service\ProductSrv',
)
);
tx_rnbase_util_Extensions::addService($_EXTKEY, 't3stores' /* sv type */, 'System25\T3stores\Service\JobSrv' /* sv key */,
array(
'title' => 'Job', 'description' => 'Handles jobs', 'subtype' => 'job',
'available' => TRUE, 'priority' => 50, 'quality' => 50,
'os' => '', 'exec' => '',
'className' => 'System25\T3stores\Service\JobSrv',
)
);
tx_rnbase_util_Extensions::addService($_EXTKEY, 't3stores' /* sv type */, 'System25\T3stores\Service\StoreSrv' /* sv key */,
array(
'title' => 'Store', 'description' => 'Handles stores', 'subtype' => 'store',
'available' => TRUE, 'priority' => 50, 'quality' => 50,
'os' => '', 'exec' => '',
'className' => 'System25\T3stores\Service\StoreSrv',
)
);
tx_rnbase_util_Extensions::addService($_EXTKEY, 't3stores' /* sv type */, 'System25\T3stores\Service\OfferSrv' /* sv key */,
array(
'title' => 'Offer', 'description' => 'Handles offers', 'subtype' => 'offer',
'available' => TRUE, 'priority' => 50, 'quality' => 50,
'os' => '', 'exec' => '',
'className' => 'System25\T3stores\Service\OfferSrv',
)
);
tx_rnbase_util_Extensions::addService($_EXTKEY, 't3stores' /* sv type */, 'System25\T3stores\Service\OrderSrv' /* sv key */,
array(
'title' => 'Order', 'description' => 'Handles orders', 'subtype' => 'order',
'available' => TRUE, 'priority' => 50, 'quality' => 50,
'os' => '', 'exec' => '',
'className' => 'System25\T3stores\Service\OrderSrv',
)
);