forked from in2code-de/femanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_typoscript_setup.txt
More file actions
42 lines (38 loc) · 920 Bytes
/
ext_typoscript_setup.txt
File metadata and controls
42 lines (38 loc) · 920 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Mapping
config.tx_extbase {
persistence {
classes {
In2code\Femanager\Domain\Model\User {
mapping {
tableName = fe_users
recordType =
columns {
tx_femanager_terms.mapOnProperty = terms
tx_femanager_terms_date_of_acceptance.mapOnProperty = termsDateOfAcceptance
}
}
}
In2code\Femanager\Domain\Model\UserGroup {
mapping {
tableName = fe_groups
recordType =
}
}
}
}
objects {
# Disable tx_extbase_type=xyz in where clause (fe_users, fe_groups)
TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMap.className = In2code\Femanager\Persistence\Generic\Mapper\DataMap
}
}
# Backend Module
module.tx_femanager {
view {
templateRootPath = EXT:femanager/Resources/Private/Templates/
partialRootPath = EXT:femanager/Resources/Private/Partials/
layoutRootPath = EXT:femanager/Resources/Private/Layouts/
}
settings {
configPID = 1
}
}