Merge pull request #9783 from mattwire/back_to_single_lang
[civicrm-core.git] / CRM / Case / xml / configuration.sample / Settings.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <Settings>
3 <!--
4 DEPRECATED
5
6 The settings in this document should be migrated to the conventional settings framework, which allows
7 a greater variety of configuration-management practices (e.g. web-based config, API access, file overrides).
8 -->
9
10 <!-- List the group whose members should appear as contacts on all Manage Case screens.
11 Only one group name is supported for now.
12 It needs to match the name column in the civicrm_group table (not the title), so avoid using space characters. -->
13 <group name="Case_Resources" />
14
15 <!-- Set this to 1 if you want case activity emails to be redacted -->
16 <!-- SEE ALSO: Setting "civicaseRedactActivityEmail" -->
17 <RedactActivityEmail>0</RedactActivityEmail>
18
19 <!-- Set this to 1 if you want to allow multiple clients to be associated with a single case -->
20 <!-- SEE ALSO: Setting "civicaseAllowMultipleClients" -->
21 <AllowMultipleCaseClients>0</AllowMultipleCaseClients>
22
23 <!-- Set this to 1 if you want to have activity types on Manage Case
24 screen sorted in XML file order, default is alphabetical -->
25 <!-- SEE ALSO: Setting "civicaseNaturalActivityTypeSort" -->
26 <NaturalActivityTypeSort>0</NaturalActivityTypeSort>
27
28 <!-- Add activity types which should NOT be editable here with editable = 0 -->
29 <ActivityTypes>
30 <ActivityType>
31 <name>Change Case Status</name>
32 <editable>0</editable>
33 </ActivityType>
34 <ActivityType>
35 <name>Change Case Start Date</name>
36 <editable>0</editable>
37 </ActivityType>
38 </ActivityTypes>
39 </Settings>