d144746d870d24e08348c150b5f69058fb21f1cd
[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 // The full path to a directory readable and writable by your webserver user
11 // that will be used to dump the MLS data uploaded via the web interface to.
12 $this->upload_target_path = "/home/users/pres/tc_data";
13
14 // The full path to the installation location of this module
15 $this->application_path = "/usr/share/phpgroupware/tc";
16
17 // The full path to the unzip application
18 $this->unzip_path = "/usr/bin/unzip";
19
20 // Use drop down lists when specifying times in the scheduling tools.
21 // If set to 0, free form text fields for the hour and minutes will be used instead.
22 // If set to 1, drop down lists will be used for the hour and minute fields
23 $this->time_drop_down_lists = 1;
24
25 // Frequency of hometeaching interview stats in months
26 // This number must evenly divide 12.
27 // Examples: Monthly=1 Quarterly=3 Yearly=12
28 $this->monthly_hometeaching_interview_stats = 3;
29
30 // Specify the minute interval increment to use in the time drop down lists
31 $this->time_drop_down_list_inc = 15;
32
33 // The default visit appointment duration in minutes
34 $this->default_visit_appt_duration = 45;
35
36 // The default ppi appointment duration in minutes
37 $this->default_ppi_appt_duration = 30;
38
39 // The default number of months of hometeaching history to show
40 $this->default_ht_num_months = 3;
41
42 // The default number of months of ppi history to show
43 $this->default_ppi_num_months = 3;
44
45 // The default number of years of ppi history to show
46 $this->default_ppi_num_years = 0;
47
48 // The default number of quarters of hometeaching interviews to show
49 $this->default_int_num_quarters = 1;
50
51 // The default number of years of hometeaching interviews to show
52 $this->default_int_num_years = 0;
53
54 // The default number of quarters of attendance to show
55 $this->default_att_num_quarters = 1;
56
57 // The default nubmer of years of visits to show
58 $this->default_vis_num_years = 1;
59
60 // The maximum number of districts you will ever need to create
61 $this->max_num_districts = 4;
62
63 ?>