forked from TYPO3GmbH/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_typoscript_setup.txt
44 lines (43 loc) · 1.25 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
plugin.tx_blog {
persistence {
storagePid = {$plugin.tx_blog.settings.storagePid}
}
}
config.tx_extbase.persistence {
classes {
T3G\AgencyPack\Blog\Domain\Model\Content {
mapping {
tableName = tt_content
}
}
T3G\AgencyPack\Blog\Domain\Model\Post {
mapping {
tableName = pages
}
}
T3G\AgencyPack\Blog\Domain\Model\Category {
mapping {
tableName = sys_category
}
}
T3G\AgencyPack\Blog\Domain\Model\Comment {
newRecordStoragePid = {$plugin.tx_blog.settings.storagePid}
mapping {
tableName = tx_blog_domain_model_comment
columns.parentid.mapOnProperty = post
}
}
T3G\AgencyPack\Blog\Domain\Model\Tag {
newRecordStoragePid = {$plugin.tx_blog.settings.storagePid}
mapping {
tableName = tx_blog_domain_model_tag
}
}
T3G\AgencyPack\Blog\Domain\Model\Author {
newRecordStoragePid = {$plugin.tx_blog.settings.storagePid}
mapping {
tableName = tx_blog_domain_model_author
}
}
}
}