forked from in2code-de/powermail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_typoscript_setup.txt
42 lines (39 loc) · 931 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
config.tx_extbase {
persistence {
classes {
In2code\Powermail\Domain\Model\User {
mapping {
tableName = fe_users
}
}
In2code\Powermail\Domain\Model\UserGroup {
mapping {
tableName = fe_groups
}
}
}
}
}
#################
# Backend Module
#################
module.tx_powermail {
view {
templateRootPaths.0 = EXT:powermail/Resources/Private/Templates/
partialRootPaths.0 = EXT:powermail/Resources/Private/Partials/
layoutRootPaths.0 = EXT:powermail/Resources/Private/Layouts/
}
settings {
# crdate, sender_name, sender_email, subject, receiver_mail, feuser, time
sortby = crdate
order = desc
perPage = 25
export {
filenameXls = powermail.xls
filenameCsv = powermail.csv
}
uploadPath = {$plugin.tx_powermail.settings.misc.uploadFolder}
# Don't touch this (this is just to let the extension know, that there is TypoScript included)
staticTemplate = 1
}
}