This repository was archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathext_typoscript_setup.txt
More file actions
48 lines (48 loc) · 1.5 KB
/
ext_typoscript_setup.txt
File metadata and controls
48 lines (48 loc) · 1.5 KB
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 {
objects {
Tx_Extbase_Persistence_Storage_BackendInterface {
className = Tx_Extbase_Persistence_Storage_Typo3DbBackend
}
Tx_Extbase_Persistence_QuerySettingsInterface {
className = Tx_Extbase_Persistence_Typo3QuerySettings
}
}
mvc {
requestHandlers {
Tx_Extbase_MVC_Web_FrontendRequestHandler = Tx_Extbase_MVC_Web_FrontendRequestHandler
Tx_Extbase_MVC_Web_BackendRequestHandler = Tx_Extbase_MVC_Web_BackendRequestHandler
Tx_Extbase_MVC_CLI_RequestHandler = Tx_Extbase_MVC_CLI_RequestHandler
}
throwPageNotFoundExceptionIfActionCantBeResolved = 0
}
persistence{
enableAutomaticCacheClearing = 1
updateReferenceIndex = 0
classes {
Tx_Extbase_Domain_Model_FrontendUser {
mapping {
tableName = fe_users
recordType = Tx_Extbase_Domain_Model_FrontendUser
columns {
lockToDomain.mapOnProperty = lockToDomain
}
}
}
Tx_Extbase_Domain_Model_FrontendUserGroup {
mapping {
tableName = fe_groups
recordType = Tx_Extbase_Domain_Model_FrontendUserGroup
columns {
lockToDomain.mapOnProperty = lockToDomain
}
}
}
}
}
features {
# this enables/disables the reworked property mapper (see http://forge.typo3.org/projects/typo3v4-mvc/wiki/PropertyMapper_rework)
rewrittenPropertyMapper = 0
# if enabled, default controller and/or action is skipped when creating URIs through the URI Builder (see http://forge.typo3.org/projects/typo3v4-mvc/wiki/Skip_default_arguments_in_URIs)
skipDefaultArguments = 0
}
}