Fixed issue with yearly interview scheduling page only showing schedule for the presi...
[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 // Specify who can hold yearly PPIs
37 // 1 = EQ President 
38 // 2 = EQ President + Counselors 
39 // 3 = EQ President + Counselors + Secretary
40 $this->yearly_ppi_interviewer = 2;
41
42 // Specify the minute interval increment to use in the time drop down lists
43 $this->time_drop_down_list_inc = 15;
44
45 // The default visit appointment duration in minutes
46 $this->default_visit_appt_duration = 45;
47
48 // The default ppi appointment duration in minutes
49 $this->default_ppi_appt_duration = 30;
50
51 // The default number of months of hometeaching history to show
52 $this->default_ht_num_months = 3;
53
54 // The default number of months of ppi history to show
55 $this->default_ppi_num_months = 3;
56
57 // The default number of years of ppi history to show
58 $this->default_ppi_num_years = 0;
59
60 // The default number of quarters of hometeaching interviews to show
61 $this->default_int_num_quarters = 1;
62
63 // The default number of years of hometeaching interviews to show
64 $this->default_int_num_years = 0;
65
66 // The default number of quarters of attendance to show
67 $this->default_att_num_quarters = 1;
68
69 // The default nubmer of years of visits to show
70 $this->default_vis_num_years = 1;
71
72 // The maximum number of districts you will ever need to create
73 $this->max_num_districts = 4;
74
75 ?>