Changed monthly_hometeaching_interview_stats config variable to mean every X months.
authorAlan J. Pippin <ajp@server.pippins.net>
Sat, 16 Feb 2008 02:56:23 +0000 (19:56 -0700)
committerAlan J. Pippin <ajp@pippins.net>
Sat, 16 Feb 2008 02:56:23 +0000 (19:56 -0700)
It now represents the frequency of hometeaching interview stats in months.
Example Values: Monthly=1 Quarterly=3 Yearly=12

inc/class.eq.inc.php
setup/eq_config

index 4574d4b9290db9ecc5b22dad4605117b303ab943..68bc93dc1ad16fb35cb890f64d0a5096a3025596 100644 (file)
@@ -2722,26 +2722,19 @@ class eq
          $table_data .= "<tr><td colspan=20><hr></td></tr>";
        }
        $total_companionships += $num_companionships;
-       $stat_data = "<tr><td><b><font size=-2>$num_companionships Companionships<br>Interview Quarterly Totals:</font></b></td>";
+       $stat_data = "<tr><td><b><font size=-2>$num_companionships Companionships<br>Interview Totals:</font></b></td>";
 
        // 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 .= "<td align=center><font size=-2><b>$quarter_total<br>$percent%</font></b></td>";
-         }
-         $stat_data .= "</tr>";
-       }
-       else { // Monthly
-         for($m=$num_months; $m >=0; $m--) {
-           $percent = ceil(($ints[$m] / $num_companionships)*100);
-           $stat_data .= "<td align=center><font size=-2><b>$ints[$m]<br>$percent%</font></b></td>";
-         }
-         $stat_data .= "</tr>";
+       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 .= "<td align=center><font size=-2><b>$total<br>$percent%</font></b></td>";
        }
+       $stat_data .= "</tr>";
        
        $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 = "<tr><td><b><font size=-2>$total_companionships Total Comps<br>Interview Quarterly Totals:</font></b></td>";
-       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 .= "<td align=center><font size=-2><b>$quarter_total<br>$percent%</font></b></td>";
-       }
-       $totals .= "</tr>";
-      }
-      else { //Monthly
-       $totals = "<tr><td><b><font size=-2>$total_companionships Total Comps<br>Interview Monthly Totals:</font></b></td>";
-       for($m=$num_months; $m >=0; $m--) {
-         $percent = ceil(($total_ints[$m] / $total_companionships)*100);
-         $totals .= "<td align=center><font size=-2><b>$total_ints[$m]<br>$percent%</font></b></td>";
-       }
-       $totals .= "</tr>";
+      $total = 0;
+      $totals = "<tr><td><b><font size=-2>$total_companionships Total Comps<br>Interview Totals:</font></b></td>";
+      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 .= "<td align=center><font size=-2><b>$total<br>$percent%</font></b></td>";
       }
-      
+      $totals .= "</tr>";
+          
       $this->t->set_var('totals',$totals);
       $this->t->pfp('out','int_view_t');
       $this->save_sessiondata(); 
index eadd5b49adef1fd547c63d32210c316abd4afbbc..54b8d4a3cba858d3ac7fb2b5a6f6be614dffbf12 100644 (file)
@@ -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;