forked from extcode/cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_typoscript_setup.typoscript
28 lines (26 loc) · 1.07 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
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}
}
}
}