forked from koninklijke-collective/my_user_management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_typoscript_setup.typoscript
34 lines (31 loc) · 1.34 KB
/
ext_typoscript_setup.typoscript
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
# Module configuration
module.tx_myusermanagement {
# This is deprecated since v12. I cannot override the default view paths for initial extending of ext:beuser
# Now the following Paths are used:
# Prioritizes: EXT:my_user_management/Resources/Private/
# Fallback on: EXT:backend/Resources/Private/
view {
templateRootPaths {
10 = EXT:my_user_management/Resources/Private/Templates
20 = EXT:beuser/Resources/Private/Templates
30 = EXT:my_user_management/Resources/Private/Templates/Override
}
partialRootPaths {
10 = EXT:my_user_management/Resources/Private/Partials
20 = EXT:beuser/Resources/Private/Partials
30 = EXT:my_user_management/Resources/Private/Partials/Override
}
layoutRootPaths {
10 = EXT:my_user_management/Resources/Private/Layouts
20 = EXT:beuser/Resources/Private/Layouts
30 = EXT:my_user_management/Resources/Private/Layouts/Override
}
}
settings {
// This is a dummy entry. It is used in Tx_Beuser_Controller_BackendUserController
// to test that some TypoScript configuration is set.
// This entry can be removed if extbase setup is made frontend TS independant
// or if there are other settings set.
dummy = foo
}
}