コード例 #1
0
 function Report_overview($month, $year)
 {
     parent::ARV_report();
     $this->month = $month;
     $this->year = $year;
     $this->pager_limit = 30;
 }
コード例 #2
0
 function Cohort_report($month, $year, $period)
 {
     parent::ARV_report();
     $this->month = $month;
     $this->year = $year;
     $this->table = $this->createTables(date('Y-m-d', mktime(0, 0, 0, $this->month + 3, 1, $this->year) - 86400));
     $this->period = $period;
 }
コード例 #3
0
 function Report_cStatistics($year_start, $year_end)
 {
     parent::ARV_report();
     $this->year_start = $year_start;
     $this->year_end = $year_end;
     $this->year_count = 0;
     $this->table = $this->createTables();
 }
コード例 #4
0
 function Quarterly_report($month, $year, $nr_6, $nr_12)
 {
     parent::ARV_report();
     $this->month = $month;
     $this->year = $year;
     $this->table = $this->createTables(date('Y-m-d', mktime(0, 0, 0, $this->month + 3, 1, $this->year) - 86400));
     $this->nr_6 = $nr_6;
     $this->nr_12 = $nr_12;
 }