From b74dbe53448ab77b7ff14bae31ea9a2b2e56ab38 Mon Sep 17 00:00:00 2001 From: "Alan J. Pippin" Date: Fri, 15 Feb 2008 19:56:23 -0700 Subject: [PATCH] Changed monthly_hometeaching_interview_stats config variable to mean every X months. It now represents the frequency of hometeaching interview stats in months. Example Values: Monthly=1 Quarterly=3 Yearly=12 --- inc/class.eq.inc.php | 59 +++++++++++++++++--------------------------- setup/eq_config | 8 +++--- 2 files changed, 26 insertions(+), 41 deletions(-) diff --git a/inc/class.eq.inc.php b/inc/class.eq.inc.php index 4574d4b..68bc93d 100644 --- a/inc/class.eq.inc.php +++ b/inc/class.eq.inc.php @@ -2722,26 +2722,19 @@ class eq $table_data .= "
"; } $total_companionships += $num_companionships; - $stat_data = "$num_companionships Companionships
Interview Quarterly Totals:
"; + $stat_data = "$num_companionships Companionships
Interview Totals:
"; // Print the hometeaching interview stats - if($this->monthly_hometeaching_interview_stats == 0) { //Quarterly - for($m=$num_months; $m >=0; $m--) { - $month = $current_month - $m; - if(($month % 3) == 1) { $quarter_total = $ints[$m]; } - else { $quarter_total += $ints[$m]; } - $percent = ceil(($quarter_total / $num_companionships)*100); - $stat_data .= "$quarter_total
$percent%
"; - } - $stat_data .= ""; - } - else { // Monthly - for($m=$num_months; $m >=0; $m--) { - $percent = ceil(($ints[$m] / $num_companionships)*100); - $stat_data .= "$ints[$m]
$percent%
"; - } - $stat_data .= ""; + for($m=$num_months; $m >=0; $m--) { + $month = $current_month - $m; + $month_begins = $month % $this->monthly_hometeaching_interview_stats; + if($this->monthly_hometeaching_interview_stats == 1) { $month_begins = 1; } + if(($month_begins) == 1) { $total = $ints[$m]; } + else { $total += $ints[$m]; } + $percent = ceil(($total / $num_companionships)*100); + $stat_data .= "$total
$percent%
"; } + $stat_data .= ""; $this->t->set_var('table_width',$table_width); $this->t->set_var('header_row',$header_row); @@ -2751,27 +2744,19 @@ class eq } // Display the totals - if($this->monthly_hometeaching_interview_stats == 0) { //Quarterly - $quarter_total = 0; - $totals = "$total_companionships Total Comps
Interview Quarterly Totals:
"; - for($m=$num_months; $m >=0; $m--) { - $month = $current_month - $m; - if(($month % 3) == 1) { $quarter_total = $total_ints[$m]; } - else { $quarter_total += $total_ints[$m]; } - $percent = ceil(($quarter_total / $total_companionships)*100); - $totals .= "$quarter_total
$percent%
"; - } - $totals .= ""; - } - else { //Monthly - $totals = "$total_companionships Total Comps
Interview Monthly Totals:
"; - for($m=$num_months; $m >=0; $m--) { - $percent = ceil(($total_ints[$m] / $total_companionships)*100); - $totals .= "$total_ints[$m]
$percent%
"; - } - $totals .= ""; + $total = 0; + $totals = "$total_companionships Total Comps
Interview Totals:
"; + for($m=$num_months; $m >=0; $m--) { + $month = $current_month - $m; + $month_begins = $month % $this->monthly_hometeaching_interview_stats; + if($this->monthly_hometeaching_interview_stats == 1) { $month_begins = 1; } + if(($month_begins) == 1) { $total = $total_ints[$m]; } + else { $total += $total_ints[$m]; } + $percent = ceil(($total / $total_companionships)*100); + $totals .= "$total
$percent%
"; } - + $totals .= ""; + $this->t->set_var('totals',$totals); $this->t->pfp('out','int_view_t'); $this->save_sessiondata(); diff --git a/setup/eq_config b/setup/eq_config index eadd5b4..54b8d4a 100644 --- a/setup/eq_config +++ b/setup/eq_config @@ -22,10 +22,10 @@ $this->unzip_path = "/usr/local/bin/unzip"; // If set to 1, drop down lists will be used for the hour and minute fields $this->time_drop_down_lists = 1; -// Compute hometeaching interview stats per month or per quarter -// If set to 0, stats will be computed per quarter. -// If set to 1, stats will be computed per month. -$this->monthly_hometeaching_interview_stats = 0; +// Frequency of hometeaching interview stats in months +// This number must evenly divide 12. +// Examples: Monthly=1 Quarterly=3 Yearly=12 +$this->monthly_hometeaching_interview_stats = 3; // Specify the minute interval increment to use in the time drop down lists $this->time_drop_down_list_inc = 15; -- 2.34.1