forked from reinhardfuehricht/typo3-formhandler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_typoscript_setup.txt
50 lines (49 loc) · 1.07 KB
/
ext_typoscript_setup.txt
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
config.tx_extbase.persistence.classes {
Typoheads\Formhandler\Domain\Model\LogData {
mapping {
tableName = tx_formhandler_log
columns {
crdate.mapOnProperty = crdate
is_spam.mapOnProperty = isSpam
params.mapOnProperty = params
ip.mapOnProperty = ip
}
}
}
Typoheads\Formhandler\Domain\Model\Demand {
mapping {
tableName = tx_formhandler_log
columns {
crdate.mapOnProperty = crdate
is_spam.mapOnProperty = isSpam
params.mapOnProperty = params
ip.mapOnProperty = ip
}
}
}
}
module.tx_formhandler {
view.widget.TYPO3\CMS\Fluid\ViewHelpers\Be\Widget\PaginateViewHelper.templateRootPath = EXT:formhandler/Resources/Private/Templates/
settings {
forceDelete = 0
pdf {
class = Typoheads\Formhandler\Generator\BackendTcPdf
config {
font = FreeSans
fontSize = 12
fontSizeHeader = 8
fontSizeFooter = 8
fileName = formhandler.pdf
}
}
csv {
class = Typoheads\Formhandler\Generator\BackendCsv
config {
encoding = utf-8
delimiter = ,
enclosure = "
fileName = formhandler.csv
}
}
}
}