forked from peterkraume/dmailsubscribe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_typoscript_setup.txt
More file actions
28 lines (26 loc) · 863 Bytes
/
ext_typoscript_setup.txt
File metadata and controls
28 lines (26 loc) · 863 Bytes
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
# ==============================================
# Persistence object mapping configuration
# ==============================================
config.tx_extbase.persistence.classes {
DPN\Dmailsubscribe\Domain\Model\Subscription {
mapping {
tableName = tt_address
columns {
name.mapOnProperty = name
company.mapOnProperty = company
email.mapOnProperty = email
gender.mapOnProperty = gender
module_sys_dmail_html.mapOnProperty = receiveHtml
module_sys_dmail_category.mapOnProperty = categories
}
}
}
DPN\Dmailsubscribe\Domain\Model\Category {
mapping {
tableName = sys_dmail_category
columns {
category.mapOnProperty = title
}
}
}
}