4bf7b6dc57683b03ed0b0927043c13c1a0b621f7
[eq/.git] / setup / tc_config
1 <?php
2
3 ///////////////////////////////////////////////////////////////////////////////////
4 // This is a configuration/preferences file for your 3rd Counselor application.
5 // You must modify these values to match your system configuration.
6 // Save the resulting file as "db_config.local" in this setup dir.
7 // This will prevent your settings from being overwritten by future code updates.
8 ///////////////////////////////////////////////////////////////////////////////////
9
10 // Set the default stewardship of this tool: "High Priest" or "Elder"
11 // Remember to set this same variable in the db_config file to the same value as well
12 // EX: For an Elder's Quorum, stewardship should be set to "Elder"
13 // EX: For a High Priest Group, stewardship should be set to "High Priest"
14 $this->default_stewardship = "Elder";
15
16 // The full path to a directory readable and writable by your webserver user
17 // that will be used to dump the MLS data uploaded via the web interface to.
18 $this->upload_target_path = "/home/users/pres/tc_data";
19
20 // The full path to the installation location of this module
21 $this->application_path = "/usr/share/phpgroupware/tc";
22
23 // The full path to the unzip application
24 $this->unzip_path = "/usr/bin/unzip";
25
26 // Use drop down lists when specifying times in the scheduling tools.
27 // If set to 0, free form text fields for the hour and minutes will be used instead.
28 // If set to 1, drop down lists will be used for the hour and minute fields
29 $this->time_drop_down_lists = 1;
30
31 // Frequency of hometeaching interview stats in months
32 // This number must evenly divide 12.
33 // Examples: Monthly=1 Quarterly=3 Yearly=12
34 $this->monthly_hometeaching_interview_stats = 3;
35
36 // Frequency of PPIs in months
37 // This number must evenly divide 12.
38 // Examples: Monthly=1 Quarterly=3 Yearly=12
39 $this->ppi_frequency = 12;
40
41 // Specify who can hold yearly PPIs
42 // 1 = EQ President 
43 // 2 = EQ President + Counselors 
44 // 3 = EQ President + Counselors + Secretary
45 $this->yearly_ppi_interviewer = 2;
46
47 // Specify the minute interval increment to use in the time drop down lists
48 $this->time_drop_down_list_inc = 15;
49
50 // The default visit appointment duration in minutes
51 $this->default_visit_appt_duration = 45;
52
53 // The default ppi appointment duration in minutes
54 $this->default_ppi_appt_duration = 30;
55
56 // The default number of months of hometeaching history to show
57 $this->default_ht_num_months = 3;
58
59 // The default number of months of ppi history to show
60 $this->default_ppi_num_months = 3;
61
62 // The default number of years of ppi history to show
63 $this->default_ppi_num_years = 0;
64
65 // The default number of quarters of hometeaching interviews to show
66 $this->default_int_num_quarters = 1;
67
68 // The default number of years of hometeaching interviews to show
69 $this->default_int_num_years = 0;
70
71 // The default number of quarters of attendance to show
72 $this->default_att_num_quarters = 1;
73
74 // The default nubmer of years of visits to show
75 $this->default_vis_num_years = 1;
76
77 // The maximum number of districts you will ever need to create
78 $this->max_num_districts = 4;
79
80 // The number of months of home teaching stats to show in the hometeaching sandbox
81 $this->sandbox_stats_num_months = 12;
82
83 // Show visit stats only for the visits this companionship is accountable for
84 // non-zero = true
85 // 0 = false
86 $this->sandbox_visits_comp_only = 1;
87
88 ?>