forked from extcode/cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_typoscript_setup.typoscript
57 lines (53 loc) · 1.86 KB
/
ext_typoscript_setup.typoscript
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
module.tx_cart {
view {
templateRootPaths {
0 = EXT:cart/Resources/Private/Backend/Templates/
}
partialRootPaths {
0 = EXT:cart/Resources/Private/Backend/Partials/
}
layoutRootPaths {
0 = EXT:cart/Resources/Private/Backend/Layouts/
}
}
}
module.tx_cart {
persistence {
storagePid = {$module.tx_cart.persistence.storagePid}
classes {
TYPO3\CMS\Extbase\Domain\Model\FrontendUser {
mapping {
tableName = fe_users
recordType = TYPO3\CMS\Extbase\Domain\Model\FrontendUser
columns {
lockToDomain.mapOnProperty = lockToDomain
}
}
}
}
}
settings {
format.currency {
currencySign = {$plugin.tx_cart.settings.format.currency.currencySign}
decimalSeparator = {$plugin.tx_cart.settings.format.currency.decimalSeparator}
thousandsSeparator = {$plugin.tx_cart.settings.format.currency.thousandsSeparator}
prependCurrency = {$plugin.tx_cart.settings.format.currency.prependCurrency}
separateCurrency = {$plugin.tx_cart.settings.format.currency.separateCurrency}
decimals = {$plugin.tx_cart.settings.format.currency.decimals}
}
}
}
config.tx_extbase.persistence.classes {
Extcode\Cart\Domain\Model\Order\BillingAddress {
mapping {
tableName = tx_cart_domain_model_order_address
recordType = \Extcode\Cart\Domain\Model\Order\BillingAddress
}
}
Extcode\Cart\Domain\Model\Order\ShippingAddress {
mapping {
tableName = tx_cart_domain_model_order_address
recordType = \Extcode\Cart\Domain\Model\Order\ShippingAddress
}
}
}