survey_invitation.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.survey
  5. * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University: cleanup, refactoring and rewriting large parts of the code
  6. * @version $Id: survey_invite.php 10680 2007-01-11 21:26:23Z pcool $
  7. *
  8. * @todo the answered column
  9. */
  10. require_once __DIR__.'/../inc/global.inc.php';
  11. /** @todo this has to be moved to a more appropriate place (after the display_header of the code)*/
  12. if (!api_is_allowed_to_edit(false, true)) {
  13. api_not_allowed(true);
  14. }
  15. // Database table definitions
  16. $table_survey = Database::get_course_table(TABLE_SURVEY);
  17. $table_survey_question = Database::get_course_table(TABLE_SURVEY_QUESTION);
  18. $table_survey_question_option = Database::get_course_table(TABLE_SURVEY_QUESTION_OPTION);
  19. $table_course = Database::get_main_table(TABLE_MAIN_COURSE);
  20. $table_user = Database::get_main_table(TABLE_MAIN_USER);
  21. $table_survey_invitation = Database::get_course_table(TABLE_SURVEY_INVITATION);
  22. $tool_name = get_lang('SurveyInvitations');
  23. // Getting the survey information
  24. $survey_id = Security::remove_XSS($_GET['survey_id']);
  25. $survey_data = SurveyManager::get_survey($survey_id);
  26. if (empty($survey_data)) {
  27. api_not_allowed(true);
  28. }
  29. $urlname = strip_tags(api_substr(api_html_entity_decode($survey_data['title'], ENT_QUOTES), 0, 40));
  30. if (api_strlen(strip_tags($survey_data['title'])) > 40) {
  31. $urlname .= '...';
  32. }
  33. // Breadcrumbs
  34. $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'survey/survey_list.php', 'name' => get_lang('SurveyList'));
  35. $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.$survey_id, 'name' => $urlname);
  36. // Displaying the header
  37. Display::display_header($tool_name);
  38. // Getting all the people who have filled this survey
  39. $answered_data = SurveyManager::get_people_who_filled_survey($survey_id);
  40. if ($survey_data['anonymous'] == 1) {
  41. echo Display::return_message(get_lang('AnonymousSurveyCannotKnowWhoAnswered').' '.count($answered_data).' '.get_lang('PeopleAnswered'));
  42. $answered_data = array();
  43. }
  44. if (!isset($_GET['view']) || $_GET['view'] == 'invited') {
  45. echo get_lang('ViewInvited').' | ';
  46. } else {
  47. echo ' <a href="'.api_get_self().'?survey_id='.$survey_id.'&amp;view=invited">'.get_lang('ViewInvited').'</a> |';
  48. }
  49. if ($_GET['view'] == 'answered') {
  50. echo get_lang('ViewAnswered').' | ';
  51. } else {
  52. echo ' <a href="'.api_get_self().'?survey_id='.$survey_id.'&amp;view=answered">'.get_lang('ViewAnswered').'</a> |';
  53. }
  54. if ($_GET['view'] == 'unanswered') {
  55. echo get_lang('ViewUnanswered');
  56. } else {
  57. echo ' <a href="'.api_get_self().'?survey_id='.$survey_id.'&amp;view=unanswered">'.get_lang('ViewUnanswered').'</a>';
  58. }
  59. // Table header
  60. echo '<table class="data_table">';
  61. echo ' <tr>';
  62. echo ' <th>'.get_lang('User').'</th>';
  63. echo ' <th>'.get_lang('InvitationDate').'</th>';
  64. echo ' <th>'.get_lang('Answered').'</th>';
  65. echo ' </tr>';
  66. $course_id = api_get_course_int_id();
  67. $sql = "SELECT survey_invitation.*, user.firstname, user.lastname, user.email
  68. FROM $table_survey_invitation survey_invitation
  69. LEFT JOIN $table_user user
  70. ON (survey_invitation.user = user.user_id AND survey_invitation.c_id = $course_id)
  71. WHERE
  72. survey_invitation.survey_code = '".Database::escape_string($survey_data['code'])."' ";
  73. $res = Database::query($sql);
  74. while ($row = Database::fetch_assoc($res)) {
  75. if (!$_GET['view'] || $_GET['view'] == 'invited' ||
  76. ($_GET['view'] == 'answered' && in_array($row['user'], $answered_data)) ||
  77. ($_GET['view'] == 'unanswered' && !in_array($row['user'], $answered_data))
  78. ) {
  79. echo '<tr>';
  80. if (is_numeric($row['user'])) {
  81. $userInfo = api_get_user_info($row['user']);
  82. echo '<td>';
  83. echo UserManager::getUserProfileLink($userInfo);
  84. echo '</td>';
  85. } else {
  86. echo '<td>'.$row['user'].'</td>';
  87. }
  88. echo ' <td>'.$row['invitation_date'].'</td>';
  89. echo ' <td>';
  90. if (in_array($row['user'], $answered_data)) {
  91. echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/reporting.php?action=userreport&amp;survey_id='.$survey_id.'&amp;user='.$row['user'].'">'.get_lang('ViewAnswers').'</a>';
  92. } else {
  93. echo '-';
  94. }
  95. echo ' </td>';
  96. echo '</tr>';
  97. }
  98. }
  99. // Closing the table
  100. echo '</table>';
  101. // Footer
  102. Display :: display_footer();