コード例 #1
0
ファイル: api.php プロジェクト: tomideru/PrestaShop-modules
     $total_customers_top_visit = array();
     $customers_top_visit = $data->getVisitTop();
     $total_customers_top_visit['data'] = array('total' => $customers_top_visit['total'], 'percent' => $customers_top_visit['percent'], 'sign' => $customers_top_visit['sign']);
     $total_customers_top_visit['status'] = 200;
     echo Tools::jsonEncode($total_customers_top_visit);
     break;
 case 'TOTAL_TOP_PROFIT':
     $total_customers_top_profit = array();
     $customers_top_profit = $data->getProfitTop();
     $total_customers_top_profit['data'] = array('total' => $customers_top_profit['total'], 'percent' => $customers_top_profit['percent'], 'sign' => $customers_top_profit['sign']);
     $total_customers_top_profit['status'] = 200;
     echo Tools::jsonEncode($total_customers_top_profit);
     break;
 case 'TOTAL_TOP_REVENUE':
     $total_revenue = array();
     $revenue = $data->getRevenueTop();
     $total_revenue['data'] = array('total' => $revenue['total'], 'percent' => $revenue['percent'], 'sign' => $revenue['sign']);
     $total_revenue['status'] = 200;
     echo Tools::jsonEncode($total_revenue);
     break;
 case 'TOTAL_TOP_PRODUCT':
     $total_product = array();
     $product = $data->getProductTop();
     $total_product['data'] = array('total' => $product['total']);
     $total_product['status'] = 200;
     echo Tools::jsonEncode($total_product);
     break;
 case 'BEST_CATEGORIES':
     $best_categories = $data->getBestCategoriesPie();
     $best_categories['status'] = 200;
     echo Tools::jsonEncode($best_categories);