results = $return; return true; } /** * Exports the complete report as a CSV file. * * @param string $document_path Document path inside the document tool * @param string $hotpotato_name * * @return bool False on error */ public function exportCompleteReportCSV($document_path = '', $hotpotato_name = '') { global $charset; $this->getExercisesReporting($document_path, $hotpotato_name); $filename = 'exercise_results_'.date('YmdGis').'.csv'; if (!empty($user_id)) { $filename = 'exercise_results_user_'.$user_id.'_'.date('YmdGis').'.csv'; } $data = ''; if (api_is_western_name_order()) { if (!empty($this->results[0]['first_name'])) { $data .= get_lang('First name').';'; } if (!empty($this->results[0]['last_name'])) { $data .= get_lang('Last name').';'; } } else { if (!empty($this->results[0]['last_name'])) { $data .= get_lang('Last name').';'; } if (!empty($this->results[0]['first_name'])) { $data .= get_lang('First name').';'; } } $data .= get_lang('e-mail').';'; $data .= get_lang('Title').';'; $data .= get_lang('Start Date').';'; $data .= get_lang('Score').';'; $data .= get_lang('Total').';'; $data .= "\n"; // Results foreach ($this->results as $row) { if (api_is_western_name_order()) { $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['first_name']), ENT_QUOTES, $charset)).';'; $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['last_name']), ENT_QUOTES, $charset)).';'; } else { $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['last_name']), ENT_QUOTES, $charset)).';'; $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['first_name']), ENT_QUOTES, $charset)).';'; } $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['email']), ENT_QUOTES, $charset)).';'; $data .= str_replace("\r\n", ' ', api_html_entity_decode(strip_tags($row['title']), ENT_QUOTES, $charset)).';'; $data .= str_replace("\r\n", ' ', $row['exe_date']).';'; $data .= str_replace("\r\n", ' ', $row['result']).';'; $data .= str_replace("\r\n", ' ', $row['max']).';'; $data .= "\n"; } //output the results $len = strlen($data); header('Content-type: application/octet-stream'); header('Content-Type: application/force-download'); header('Content-length: '.$len); if (preg_match("/MSIE 5.5/", $_SERVER['HTTP_USER_AGENT'])) { header('Content-Disposition: filename= '.$filename); } else { header('Content-Disposition: attachment; filename= '.$filename); } if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE')) { header('Pragma: '); header('Cache-Control: '); header('Cache-Control: public'); // IE cannot download from sessions without a cache } header('Content-Description: '.$filename); header('Content-transfer-encoding: binary'); // @todo add this utf-8 header for all csv files echo "\xEF\xBB\xBF"; // force utf-8 header of csv file echo $data; return true; } /** * Exports the complete report as an XLS file. * * @param string $document_path * @param null $user_id * @param bool $export_user_fields * @param int $export_filter * @param int $exercise_id * @param null $hotpotato_name * * @return bool */ public function exportCompleteReportXLS( $document_path = '', $user_id = null, $export_user_fields = false, $export_filter = 0, $exercise_id = 0, $hotpotato_name = null ) { global $charset; $this->getExercisesReporting( $document_path, $user_id, $export_filter, $exercise_id, $hotpotato_name ); $filename = 'exercise_results_'.api_get_local_time(); if (!empty($user_id)) { $filename = 'exercise_results_user_'.$user_id.'_'.api_get_local_time(); } // check if exists column 'user' $withColumnUser = false; foreach ($this->results as $result) { if (!empty($result['last_name']) && !empty($result['first_name'])) { $withColumnUser = true; break; } } $list = []; if ($withColumnUser) { $list[0][] = get_lang('e-mail'); if (api_is_western_name_order()) { $list[0][] = get_lang('First name'); $list[0][] = get_lang('Last name'); } else { $list[0][] = get_lang('Last name'); $list[0][] = get_lang('First name'); } } if ($export_user_fields) { //show user fields section with a big th colspan that spans over all fields $extra_user_fields = UserManager::get_extra_fields( 0, 1000, 5, 'ASC', false, 1 ); //show the fields names for user fields foreach ($extra_user_fields as $field) { $list[0][] = api_html_entity_decode( strip_tags($field[3]), ENT_QUOTES, $charset ); } } $list[0][] = get_lang('Title'); $list[0][] = get_lang('Start Date'); $list[0][] = get_lang('End Date'); $list[0][] = get_lang('Duration').' ('.get_lang('minutes').')'; $list[0][] = get_lang('Score'); $list[0][] = get_lang('Total'); $list[0][] = get_lang('Status'); $column = 1; foreach ($this->results as $row) { if ($withColumnUser) { $list[$column][] = api_html_entity_decode( strip_tags($row['email']), ENT_QUOTES, $charset ); if (api_is_western_name_order()) { $list[$column][] = api_html_entity_decode( strip_tags($row['first_name']), ENT_QUOTES, $charset ); $list[$column][] = api_html_entity_decode( strip_tags($row['last_name']), ENT_QUOTES, $charset ); } else { $list[$column][] = api_html_entity_decode( strip_tags($row['last_name']), ENT_QUOTES, $charset ); $list[$column][] = api_html_entity_decode( strip_tags($row['first_name']), ENT_QUOTES, $charset ); } } if ($export_user_fields) { //show user fields data, if any, for this user $values = UserManager::get_extra_user_data( $row['user_id'], false, false, false, true ); foreach ($values as $value) { $list[$column][] = api_html_entity_decode(strip_tags($value), ENT_QUOTES, $charset); } } $list[$column][] = api_html_entity_decode(strip_tags($row['title']), ENT_QUOTES, $charset); $list[$column][] = $row['start_date']; $list[$column][] = $row['end_date']; $list[$column][] = $row['duration']; $list[$column][] = $row['result']; $list[$column][] = $row['max']; $list[$column][] = $row['status']; } Export::arrayToXls($list, $filename); return true; } }