123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?php
- $langFile = 'survey';
- require_once ('../inc/global.inc.php');
- require_once (api_get_path(LIBRARY_PATH)."/course.lib.php");
- require (api_get_path(LIBRARY_PATH)."/groupmanager.lib.php");
- $cidReq = $_REQUEST['cidReq'];
- $tbl_user_survey = Database::get_main_table(MAIN_SURVEY_USER_TABLE);
- $tbl_questions = Database::get_course_table('questions');
- $tbl_questions_groups = Database::get_course_table('survey_group');
- $tbl_answers = Database::get_course_table('survey_report');
- require_once (api_get_path(LIBRARY_PATH).'/fileManage.lib.php');
- require_once (api_get_path(CONFIGURATION_PATH) ."/add_course.conf.php");
- require_once (api_get_path(LIBRARY_PATH)."/add_course.lib.inc.php");
- require_once (api_get_path(LIBRARY_PATH)."/surveymanager.lib.php");
- $status = surveymanager::get_status();
- $surveyid=$_REQUEST['surveyid'];
- $db_name = $_REQUEST['db_name'];
- if($status==5)
- {
- api_protect_admin_script();
- }
- $tool_name = get_lang('SurveyReporting');
- $interbreadcrumb[] = array ("url" => "survey_list.php", "name" => get_lang('Survey'));
- Display::display_header($tool_name);
- /*
- $sql = 'SELECT *
- FROM '.$tbl_user_survey.' as user_survey,'.$tbl_questions.' as questions, '.$tbl_answers.' as answers, '.$tbl_questions_groups.' as groups
- WHERE answers.qid = questions.qid
- AND answers.user_id = user_survey.user_id
- AND user_survey.survey_id='.$surveyid.'
- AND user_survey.db_name="'.$db_name.'"
- AND groups.group_id = questions.gid
- ORDER BY email, groups.sortby, questions.sortby';
- $rs = api_sql_query($sql, __FILE__, __LINE__);
- $answers = api_store_result($rs);
- */
- $users = SurveyManager::listUsers($surveyid, $db_name);
- $questions = SurveyManager::listQuestions($surveyid);
- $excel_content = '';
- $excel_file_name = 'export_survey-'.$surveyid.$db_name.'.csv';
- echo '<a href="../course_info/download.php?archive='.$excel_file_name.'"><img border="0" src="../img/xls.gif" align="middle"/>'.get_lang('ExportInExcel').'</a><br /><br/>';
- echo '<div style="overflow:scroll;">
- <table width="2000" height="300" style="">
- <tr style="font-weight:bold">
- <td valign="top" align="left" width="120">'.get_lang('LastName').'</td>
- <td valign="top" align="left" width="120">'.get_lang('FirstName').'</td>
- <td valign="top" align="left" width="200">'.get_lang('EmailAddress').'</td>
- <td valign="top" align="left" width="200">'.get_lang('Organisation').'</td>';
- $excel_content .= get_lang('LastName').';'.get_lang('FirstName').';'.get_lang('EmailAddress').';'.get_lang('Organisation').';';
- foreach($questions as $question){
- $question['caption'] = eregi_replace('^<p[^>]*>(.*)</p>','\\1', $question['caption']);
- $question['caption'] = eregi_replace('(<[^ ]*) (style=."."[^>]*)(>)','\\1\\3', $question['caption']);
- $question['caption'] = eregi_replace('(<[^ ]*) (style=.""[^>]*)(>)','\\1\\3', $question['caption']);
- $question['caption'] = eregi_replace('(<[^ ]*)( style=."[^"]*")([^>]*)(>)','\\1\\2\\4', $question['caption']);
- $excel_content .= stripslashes($question['caption']).';';
- echo '<td valign="top" align="left" width="200">'.stripslashes($question['caption']).'</td>';
- }
- $excel_content .= "\r\n";
- $color = '#FFCCCC';
- echo '<td style="background-color:#FFF"> </td></tr><tr style="background-color:'.$color.'">';
- $lastEmail = $users[O]['email'];
- foreach($users as $user){
-
- if($user['email']!=$lastEmail){
- $excel_content .= "\r\n";
- $color = ($color == '#FFCCCC') ? '#CCCCFF' : '#FFCCCC';
- echo '<td style="background-color:#FFF"> </td></tr><tr style="background-color:'.$color.'">';
- $lastEmail = $user['email'];
-
- $excel_content .= str_replace(array("\r","\n"),array("",""),$user['lastname'].';'.$user['firstname'].';'.$user['email'].';'.$user['organization'].';');
-
- echo ' <td valign="top" align="left" width="120">'.$user['lastname'].'</td>
- <td valign="top" align="left" width="120">'.$user['firstname'].'</td>
- <td valign="top" align="left" width="200">'.$user['email'].'</td>
- <td valign="top" align="left" width="200">'.nl2br($user['organization']).'</td>';
- }
-
- foreach($questions as $question){
- $sql = 'SELECT answer
- FROM '.$tbl_answers.' as answers
- WHERE qid='.$question['qid'].'
- AND user_id='.$user['user_id'];
-
- $rs = api_sql_query($sql, __FILE__, __LINE__);
- $answer = mysql_result($rs, 'answer');
-
- if(in_array($answer,array('a1','a2','a3','a4','a5','a6','a7','a8','a9','a10'))){
- $answer = $question[$answer];
- }
-
- if($question['qtype']=='Numbered'){
- $answers = explode(',',$answer);
- $final_answer = '';
- for($i=0;$i<count($answers);$i++){
- $final_answer.= $question['a'.($i+1)].' : '.$answers[$i].'<br />';
- }
- $answer = $final_answer;
- }
-
- if($question['qtype']=='Multiple Choice (multiple answer)'){
- $answers = explode(',',$answer);
- $final_answer = '';
- for($i=0;$i<count($answers);$i++){
- $final_answer.= $question['a'.($i+1)].'<br />';
- }
- $answer = $final_answer;
- }
-
- if(empty($answer))
- $answer = '-';
-
- $excel_content .= stripslashes(str_replace(array("\r","\n","<br />"),array("",""," - "),($answer))).';';
- echo '<td valign="top" align="left" width="200">'.stripslashes($answer).'</td>';
- }
-
- }
- echo '</table></div>';
- $archivePath=api_get_path(SYS_PATH).$archiveDirName.'/';
- $handle = fopen($archivePath.$excel_file_name, 'w');
- fwrite($handle, $excel_content);
- fclose($handle);
- chmod($archivePath.$excel_file_name, 0755);
- Display :: display_footer();
- ?>
|