コード例 #1
0
ファイル: reports_controller.php プロジェクト: Connxt/fixnmix
 public function get_top_selling_branches_by_month_post()
 {
     $year = $this->input->post('year');
     $by_quantity = $this->input->post('byQuantity');
     // true or false
     $analytics = new Analytics($this->base_model->get_db_instance());
     echo $analytics->get_top_selling_branches_by_month($year, $by_quantity);
 }
コード例 #2
0
 public function get_top_selling_branches_by_month_post()
 {
     $analytics = new Analytics($this->base_model->get_db_instance());
     echo $analytics->get_top_selling_branches_by_month(2015, !true);
 }