, Ghent University: cleanup, refactoring and rewriting large parts of the code * @version $Id: survey_list.php 10680 2007-01-11 21:26:23Z pcool $ * * @todo use quickforms for the forms * @todo check if the user already filled the survey and if this is the case then the answers have to be updated and not stored again. * alterantively we could not allow people from filling the survey twice. * @todo performance could be improved if not the survey_id was stored with the invitation but the survey_code */ // name of the language file that needs to be included $language_file = 'survey'; // unsetting the course id (because it is in the URL) if (!isset($_GET['cidReq'])) { $cidReset = true; } else { $_cid = $_GET['cidReq']; } // including the global dokeos file require ('../inc/global.inc.php'); // including additional libraries //require_once (api_get_path(LIBRARY_PATH)."survey.lib.php"); require_once('survey.lib.php'); require_once (api_get_path(LIBRARY_PATH).'course.lib.php'); // breadcrumbs if (!empty($_user)) { $interbreadcrumb[] = array ("url" => 'survey_list.php', 'name' => get_lang('SurveyList')); } // Header Display :: display_header(get_lang('Survey')); // getting all the course information $_course = CourseManager::get_course_information($_GET['course']); // Database table definitions $table_survey = Database :: get_course_table(TABLE_SURVEY, $_course['db_name']); $table_survey_question = Database :: get_course_table(TABLE_SURVEY_QUESTION, $_course['db_name']); $table_survey_question_option = Database :: get_course_table(TABLE_SURVEY_QUESTION_OPTION, $_course['db_name']); $table_course = Database :: get_main_table(TABLE_MAIN_COURSE); $table_user = Database :: get_main_table(TABLE_MAIN_USER); $table_survey_invitation = Database :: get_course_table(TABLE_SURVEY_INVITATION, $_course['db_name']); // first we check if the needed parameters are present if (!isset($_GET['course']) OR !isset($_GET['invitationcode'])) { Display :: display_error_message(get_lang('SurveyParametersMissingUseCopyPaste'), false); Display :: display_footer(); exit; } // now we check if the invitationcode is valid $sql = "SELECT * FROM $table_survey_invitation WHERE invitation_code = '".Database::escape_string($_GET['invitationcode'])."'"; $result = api_sql_query($sql, __FILE__, __LINE__); if (mysql_num_rows($result) < 1) { Display :: display_error_message(get_lang('WrongInvitationCode'), false); Display :: display_footer(); exit; } $survey_invitation = mysql_fetch_assoc($result); // now we check if the user already filled the survey if ($survey_invitation['answered'] == 1) { Display :: display_error_message(get_lang('YouAlreadyFilledThisSurvey'), false); Display :: display_footer(); exit; } // checking if there is another survey with this code. // If this is the case there will be a language choice $sql = "SELECT * FROM $table_survey WHERE code='".Database::escape_string($survey_invitation['survey_code'])."'"; $result = api_sql_query($sql, __FILE__, __LINE__); if (mysql_num_rows($result) > 1) { if ($_POST['language']) { $survey_invitation['survey_id'] = $_POST['language']; } else { echo '
'; display::display_footer(); exit; } } else { $row=mysql_fetch_assoc($result); $survey_invitation['survey_id'] = $row['survey_id']; } // getting the survey information $survey_data = survey_manager::get_survey($survey_invitation['survey_id']); $survey_data['survey_id'] = $survey_invitation['survey_id']; // storing the answers if ($_POST) { // getting all the types of the question (because of the special treatment of the score question type $sql = "SELECT * FROM $table_survey_question WHERE survey_id = '".Database::escape_string($survey_invitation['survey_id'])."'"; $result = api_sql_query($sql, __FILE__, __LINE__); while ($row = mysql_fetch_assoc($result)) { $types[$row['question_id']] = $row['type']; } // looping through all the post values foreach ($_POST as $key=>$value) { // if the post value key contains the string 'question' then it is an answer on a question if (strstr($key,'question')) { // finding the question id by removing 'question' $survey_question_id = str_replace('question', '',$key); // if the post value is an array then we have a multiple response question or a scoring question type // remark: when it is a multiple response then the value of the array is the option_id // when it is a scoring question then the key of the array is the option_id and the value is the value if (is_array($value)) { SurveyUtil::remove_answer($survey_invitation['user'], $survey_invitation['survey_id'], $survey_question_id); foreach ($value as $answer_key => $answer_value) { if ($types[$survey_question_id] == 'score') { $option_id = $answer_key; $option_value = $answer_value; } else { $option_id = $answer_value; $option_value = ''; } SurveyUtil::store_answer($survey_invitation['user'], $survey_invitation['survey_id'], $survey_question_id, $option_id, $option_value, $survey_data); } } // all the other question types (open question, multiple choice, percentage, ...) else { if ($types[$survey_question_id] == 'percentage') { $sql = "SELECT * FROM $table_survey_question_option WHERE question_option_id='".Database::escape_string($value)."'"; $result = api_sql_query($sql, __FILE__, __LINE__); $row = mysql_fetch_assoc($result); $option_value = $row['option_text']; } else { $option_value = 0; if($types[$survey_question_id] == 'open') { $option_value = $value; //$value = 0; } } $survey_question_answer = $value; SurveyUtil::remove_answer($survey_invitation['user'], $survey_invitation['survey_id'], $survey_question_id); SurveyUtil::store_answer($survey_invitation['user'], $survey_invitation['survey_id'], $survey_question_id, $value, $option_value, $survey_data); //SurveyUtil::store_answer($user,$survey_id,$question_id, $option_id, $option_value, $survey_data); } } } } // displaying the survey title and subtitle (appears on every page) echo '