forked from TYPO3-svn-archive/formhandler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_typoscript_setup.txt
49 lines (48 loc) · 1021 Bytes
/
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
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 {
pdf {
class = Generator\TCPDF
config {
font = FreeSans
fontSize = 12
fontSizeHeader = 8
fontSizeFooter = 8
fileName = formhandler.pdf
}
}
csv {
class = Generator\CSV
config {
encoding = utf-8
delimiter = ,
enclosure = "
fileName = formhandler.csv
}
}
}
}