forked from kitodo/kitodo-presentation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_typoscript_setup.txt
78 lines (77 loc) · 2.26 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# TODO: This whole file can get discarded when support for TYPO3 9.5 ends.
config.tx_extbase {
persistence {
classes {
Kitodo\Dlf\Domain\Model\ActionLog {
mapping {
tableName = tx_dlf_actionlog
}
}
Kitodo\Dlf\Domain\Model\Basket {
mapping {
tableName = tx_dlf_basket
}
}
Kitodo\Dlf\Domain\Model\Collection {
mapping {
tableName = tx_dlf_collections
}
}
Kitodo\Dlf\Domain\Model\Document {
mapping {
tableName = tx_dlf_documents
}
}
Kitodo\Dlf\Domain\Model\Format {
mapping {
tableName = tx_dlf_formats
}
}
Kitodo\Dlf\Domain\Model\Library {
mapping {
tableName = tx_dlf_libraries
}
}
Kitodo\Dlf\Domain\Model\Mail {
mapping {
tableName = tx_dlf_mail
}
}
Kitodo\Dlf\Domain\Model\Metadata {
mapping {
tableName = tx_dlf_metadata
}
}
Kitodo\Dlf\Domain\Model\MetadataFormat {
mapping {
tableName = tx_dlf_metadataformat
}
}
Kitodo\Dlf\Domain\Model\MetadataSubentry {
mapping {
tableName = tx_dlf_metadatasubentries
}
}
Kitodo\Dlf\Domain\Model\Printer {
mapping {
tableName = tx_dlf_printer
}
}
Kitodo\Dlf\Domain\Model\SolrCore {
mapping {
tableName = tx_dlf_solrcores
}
}
Kitodo\Dlf\Domain\Model\Structure {
mapping {
tableName = tx_dlf_structures
}
}
Kitodo\Dlf\Domain\Model\Token {
mapping {
tableName = tx_dlf_tokens
}
}
}
}
}