Ejemplo n.º 1
0
 private function __export()
 {
     require_once 'clinique_export.php';
     $type = required_param('type', PARAM_RAW_TRIMMED);
     $retailer = required_param('retailer', PARAM_RAW_TRIMMED);
     $store = required_param('store', PARAM_RAW_TRIMMED);
     $region = required_param('region', PARAM_RAW_TRIMMED);
     $country = required_param('country', PARAM_RAW_TRIMMED);
     $team = required_param('team', PARAM_RAW_TRIMMED);
     $sortBy = required_param('sortby', PARAM_RAW_TRIMMED);
     $recordrow = required_param('recordrow', PARAM_RAW_TRIMMED);
     ProgressPercent::__analyseExport($type, $retailer, $store, $region, $country, $team, $sortBy, $recordrow);
 }
Ejemplo n.º 2
0
 private function __export()
 {
     require_once 'clinique_export.php';
     $type = required_param('type', PARAM_RAW_TRIMMED);
     $retailer = required_param('retailer', PARAM_RAW_TRIMMED);
     $store = required_param('store', PARAM_RAW_TRIMMED);
     $region = required_param('region', PARAM_RAW_TRIMMED);
     $country = required_param('country', PARAM_RAW_TRIMMED);
     $course = required_param('course', PARAM_RAW_TRIMMED);
     $team = required_param('team', PARAM_RAW_TRIMMED);
     $sortBy = required_param('sortby', PARAM_RAW_TRIMMED);
     $fields = required_param('fields', PARAM_RAW_TRIMMED);
     $keyword = required_param('keyword', PARAM_RAW_TRIMMED);
     $isshowreport = required_param('isshowreport', PARAM_RAW_TRIMMED);
     $recordrow = required_param('recordrow', PARAM_RAW_TRIMMED);
     ProgressPercent::__analyseExport($type, $retailer, $store, $region, $country, $course, $team, $sortBy, $fields, $keyword, $isshowreport, $recordrow);
 }