-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_typoscript_setup.typoscript
48 lines (42 loc) · 1.12 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
config.tx_extbase.persistence.classes {
WDB\WdbNewsSnapin\Domain\Model\NewsTtcontentRelation {
mapping {
# recordType = 0
tableName = tx_wdbnewssnapin_news_ttcontent_mm
columns {
uid_news.mapOnProperty = txWdbnewssnapinNews
uid_ttcontent.mapOnProperty = txWdbnewssnapinTtcontent
layout_area.mapOnProperty = layoutArea
}
}
}
WDB\WdbNewsSnapin\Domain\Model\LayoutLayoutareaRelation {
mapping {
tableName = tx_wdbnewssnapin_layout_layoutarea_mm
columns {
uid_layout.mapOnProperty = layout
uid_layoutarea.mapOnProperty = layoutArea
}
}
}
WDB\WdbNewsSnapin\Domain\Model\NewsTtcontentRelationLayoutareaRelation {
mapping {
tableName = tx_wdbnewssnapin_news_ttcontent_relation_layoutarea_mm
columns {
uid_relation = relation
uid_layout.mapOnProperty = layout
uid_layoutarea.mapOnProperty = layoutArea
}
}
}
WDB\WdbNewsSnapin\Domain\Model\Ttcontent {
mapping {
tableName = tt_content
}
}
WDB\WdbNewsSnapin\Domain\Model\News {
mapping {
tableName = tx_news_domain_model_news
}
}
}