-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_typoscript_setup.txt
35 lines (35 loc) · 1.05 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
config.tx_extbase {
persistence {
classes {
TYPO3\CMS\Extbase\Domain\Model\AbstractFileCollection {
mapping {
tableName = sys_file_collection
recordType = type
}
subclasses {
TYPO3\CMS\Extbase\Domain\Model\StaticFileCollection = TYPO3\CMS\Extbase\Domain\Model\StaticFileCollection
TYPO3\CMS\Extbase\Domain\Model\FolderBasedFileCollection = TYPO3\CMS\Extbase\Domain\Model\FolderBasedFileCollection
Netztechniker\NtFixFilecollections\Domain\Model\CategoryBasedFileCollection = Netztechniker\NtFixFilecollections\Domain\Model\CategoryBasedFileCollection
}
}
TYPO3\CMS\Extbase\Domain\Model\StaticFileCollection {
mapping {
tableName = sys_file_collection
recordType = static
}
}
TYPO3\CMS\Extbase\Domain\Model\FolderBasedFileCollection {
mapping {
tableName = sys_file_collection
recordType = folder
}
}
Netztechniker\NtFixFilecollections\Domain\Model\CategoryBasedFileCollection {
mapping {
tableName = sys_file_collection
recordType = category
}
}
}
}
}