@@ -83,15 +83,15 @@ |
||
83 | 83 | |
84 | 84 | /** @todo this has to be moved to a more appropriate place (after the display_header of the code)*/ |
85 | 85 | if (!api_is_allowed_to_edit(false, true) || $isDrhOfCourse) { |
86 | - Display :: display_header(get_lang('ToolSurvey')); |
|
86 | + Display :: display_header(get_lang('ToolSurvey')); |
|
87 | 87 | // Show error message if the survey can be seen only by tutors |
88 | 88 | if ($survey_data['visible_results'] != SURVEY_VISIBLE_TUTOR) { |
89 | 89 | SurveyUtil::handle_reporting_actions($survey_data, $people_filled); |
90 | 90 | } else { |
91 | 91 | Display :: display_error_message(get_lang('NotAllowed'), false); |
92 | 92 | } |
93 | - Display :: display_footer(); |
|
94 | - exit; |
|
93 | + Display :: display_footer(); |
|
94 | + exit; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | // Database table definitions |
@@ -19,10 +19,10 @@ discard block |
||
19 | 19 | |
20 | 20 | /** @todo this has to be moved to a more appropriate place (after the display_header of the code)*/ |
21 | 21 | if (!api_is_allowed_to_edit(false, true)) { |
22 | - Display :: display_header(); |
|
23 | - Display :: display_error_message(get_lang('NotAllowed'), false); |
|
24 | - Display :: display_footer(); |
|
25 | - exit; |
|
22 | + Display :: display_header(); |
|
23 | + Display :: display_error_message(get_lang('NotAllowed'), false); |
|
24 | + Display :: display_footer(); |
|
25 | + exit; |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | // Is valid request |
@@ -42,30 +42,30 @@ discard block |
||
42 | 42 | $surveyData = SurveyManager::get_survey($_GET['survey_id']); |
43 | 43 | |
44 | 44 | if (empty($surveyData)) { |
45 | - Display :: display_header(get_lang('ToolSurvey')); |
|
46 | - Display :: display_error_message(get_lang('InvallidSurvey'), false); |
|
47 | - Display :: display_footer(); |
|
48 | - exit; |
|
45 | + Display :: display_header(get_lang('ToolSurvey')); |
|
46 | + Display :: display_error_message(get_lang('InvallidSurvey'), false); |
|
47 | + Display :: display_footer(); |
|
48 | + exit; |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | $urlname = api_substr(api_html_entity_decode($surveyData['title'], ENT_QUOTES), 0, 40); |
52 | 52 | if (api_strlen(strip_tags($surveyData['title'])) > 40) { |
53 | - $urlname .= '...'; |
|
53 | + $urlname .= '...'; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | if ($surveyData['survey_type'] == 1) { |
57 | - $sql = 'SELECT id FROM '.Database :: get_course_table(TABLE_SURVEY_QUESTION_GROUP).' |
|
57 | + $sql = 'SELECT id FROM '.Database :: get_course_table(TABLE_SURVEY_QUESTION_GROUP).' |
|
58 | 58 | WHERE |
59 | 59 | c_id = '.$course_id.' AND |
60 | 60 | survey_id = '.(int)$_GET['survey_id'].' LIMIT 1'; |
61 | - $rs = Database::query($sql); |
|
62 | - if (Database::num_rows($rs)===0) { |
|
61 | + $rs = Database::query($sql); |
|
62 | + if (Database::num_rows($rs)===0) { |
|
63 | 63 | Display::addFlash( |
64 | 64 | Display::return_message(get_lang('YouNeedToCreateGroups')) |
65 | 65 | ); |
66 | - header('Location: '.api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.(int)$_GET['survey_id']); |
|
67 | - exit; |
|
68 | - } |
|
66 | + header('Location: '.api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.(int)$_GET['survey_id']); |
|
67 | + exit; |
|
68 | + } |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | // Breadcrumbs |
@@ -80,10 +80,10 @@ discard block |
||
80 | 80 | |
81 | 81 | // Tool name |
82 | 82 | if ($_GET['action'] == 'add') { |
83 | - $tool_name = get_lang('AddQuestion'); |
|
83 | + $tool_name = get_lang('AddQuestion'); |
|
84 | 84 | } |
85 | 85 | if ($_GET['action'] == 'edit') { |
86 | - $tool_name = get_lang('EditQuestion'); |
|
86 | + $tool_name = get_lang('EditQuestion'); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | // The possible question types |
@@ -103,14 +103,14 @@ discard block |
||
103 | 103 | // Actions |
104 | 104 | $actions = '<div class="actions">'; |
105 | 105 | $actions .= '<a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.intval($_GET['survey_id']).'">'. |
106 | - Display::return_icon('back.png', get_lang('BackToSurvey'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
106 | + Display::return_icon('back.png', get_lang('BackToSurvey'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
107 | 107 | $actions .= '</div>'; |
108 | 108 | // Checking if it is a valid type |
109 | 109 | if (!in_array($_GET['type'], $possible_types)) { |
110 | - Display :: display_header($tool_name, 'Survey'); |
|
111 | - echo $actions; |
|
112 | - Display :: display_error_message(get_lang('TypeDoesNotExist'), false); |
|
113 | - Display :: display_footer(); |
|
110 | + Display :: display_header($tool_name, 'Survey'); |
|
111 | + echo $actions; |
|
112 | + Display :: display_error_message(get_lang('TypeDoesNotExist'), false); |
|
113 | + Display :: display_footer(); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | $error_message = ''; |
@@ -126,27 +126,27 @@ discard block |
||
126 | 126 | $formData['answers'] = array('', ''); |
127 | 127 | |
128 | 128 | if ($_GET['type'] == 'yesno') { |
129 | - $formData['answers'][0] = get_lang('Yes'); |
|
130 | - $formData['answers'][1] = get_lang('No'); |
|
129 | + $formData['answers'][0] = get_lang('Yes'); |
|
130 | + $formData['answers'][1] = get_lang('No'); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | if ($_GET['type'] == 'personality') { |
134 | - $formData['answers'][0] = 1; |
|
135 | - $formData['answers'][1] = 2; |
|
136 | - $formData['answers'][2] = 3; |
|
137 | - $formData['answers'][3] = 4; |
|
138 | - $formData['answers'][4] = 5; |
|
139 | - |
|
140 | - $formData['values'][0] = 0; |
|
141 | - $formData['values'][1] = 0; |
|
142 | - $formData['values'][2] = 1; |
|
143 | - $formData['values'][3] = 2; |
|
144 | - $formData['values'][4] = 3; |
|
134 | + $formData['answers'][0] = 1; |
|
135 | + $formData['answers'][1] = 2; |
|
136 | + $formData['answers'][2] = 3; |
|
137 | + $formData['answers'][3] = 4; |
|
138 | + $formData['answers'][4] = 5; |
|
139 | + |
|
140 | + $formData['values'][0] = 0; |
|
141 | + $formData['values'][1] = 0; |
|
142 | + $formData['values'][2] = 1; |
|
143 | + $formData['values'][3] = 2; |
|
144 | + $formData['values'][4] = 3; |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | // We are editing a question |
148 | 148 | if (isset($_GET['question_id']) && !empty($_GET['question_id'])) { |
149 | - $formData = SurveyManager::get_question($_GET['question_id']); |
|
149 | + $formData = SurveyManager::get_question($_GET['question_id']); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | $formData = $surveyQuestion->preSave($formData); |
@@ -155,8 +155,8 @@ discard block |
||
155 | 155 | $surveyQuestion->renderForm(); |
156 | 156 | |
157 | 157 | if ($surveyQuestion->getForm()->validate()) { |
158 | - $values = $surveyQuestion->getForm()->getSubmitValues(); |
|
159 | - $surveyQuestion->save($surveyData, $values); |
|
158 | + $values = $surveyQuestion->getForm()->getSubmitValues(); |
|
159 | + $surveyQuestion->save($surveyData, $values); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | Display::display_header($tool_name, 'Survey'); |
@@ -1207,16 +1207,16 @@ |
||
1207 | 1207 | } |
1208 | 1208 | |
1209 | 1209 | /** |
1210 | - * This function saves the question in the shared database |
|
1211 | - * |
|
1212 | - * @param array $form_content all the information of the form |
|
1213 | - * @param array $survey_data all the information of the survey |
|
1214 | - * |
|
1215 | - * @author Patrick Cool <[email protected]>, Ghent University |
|
1216 | - * @version February 2007 |
|
1217 | - * |
|
1218 | - * @todo editing of a shared question |
|
1219 | - */ |
|
1210 | + * This function saves the question in the shared database |
|
1211 | + * |
|
1212 | + * @param array $form_content all the information of the form |
|
1213 | + * @param array $survey_data all the information of the survey |
|
1214 | + * |
|
1215 | + * @author Patrick Cool <[email protected]>, Ghent University |
|
1216 | + * @version February 2007 |
|
1217 | + * |
|
1218 | + * @todo editing of a shared question |
|
1219 | + */ |
|
1220 | 1220 | public function save_shared_question($form_content, $survey_data) |
1221 | 1221 | { |
1222 | 1222 | $_course = api_get_course_info(); |
@@ -13,10 +13,10 @@ discard block |
||
13 | 13 | |
14 | 14 | /** @todo this has to be moved to a more appropriate place (after the display_header of the code)*/ |
15 | 15 | if (!api_is_allowed_to_edit(false, true)) { |
16 | - Display :: display_header(get_lang('ToolSurvey')); |
|
17 | - Display :: display_error_message(get_lang('NotAllowed'), false); |
|
18 | - Display :: display_footer(); |
|
19 | - exit; |
|
16 | + Display :: display_header(get_lang('ToolSurvey')); |
|
17 | + Display :: display_error_message(get_lang('NotAllowed'), false); |
|
18 | + Display :: display_footer(); |
|
19 | + exit; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | // Database table definitions |
@@ -33,25 +33,25 @@ discard block |
||
33 | 33 | // Getting the survey information |
34 | 34 | // We exit here if ther is no valid $_GET parameter |
35 | 35 | if (!isset($_GET['survey_id']) OR !is_numeric($_GET['survey_id'])) { |
36 | - Display :: display_header($tool_name); |
|
37 | - Display :: display_error_message(get_lang('InvallidSurvey'), false); |
|
38 | - Display :: display_footer(); |
|
39 | - exit; |
|
36 | + Display :: display_header($tool_name); |
|
37 | + Display :: display_error_message(get_lang('InvallidSurvey'), false); |
|
38 | + Display :: display_footer(); |
|
39 | + exit; |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | $survey_id = Security::remove_XSS($_GET['survey_id']); |
43 | 43 | $survey_data = SurveyManager::get_survey($survey_id); |
44 | 44 | |
45 | 45 | if (empty($survey_data)) { |
46 | - Display :: display_header($tool_name); |
|
47 | - Display :: display_error_message(get_lang('InvallidSurvey'), false); |
|
48 | - Display :: display_footer(); |
|
49 | - exit; |
|
46 | + Display :: display_header($tool_name); |
|
47 | + Display :: display_error_message(get_lang('InvallidSurvey'), false); |
|
48 | + Display :: display_footer(); |
|
49 | + exit; |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | $urlname = strip_tags(api_substr(api_html_entity_decode($survey_data['title'], ENT_QUOTES), 0, 40)); |
53 | 53 | if (api_strlen(strip_tags($survey_data['title'])) > 40) { |
54 | - $urlname .= '...'; |
|
54 | + $urlname .= '...'; |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | // Breadcrumbs |
@@ -64,32 +64,32 @@ discard block |
||
64 | 64 | |
65 | 65 | // Checking the parameters |
66 | 66 | if (!is_numeric($survey_id)) { |
67 | - Display::display_error_message(get_lang('Error'), false); |
|
68 | - Display::display_footer(); |
|
69 | - exit; |
|
67 | + Display::display_error_message(get_lang('Error'), false); |
|
68 | + Display::display_footer(); |
|
69 | + exit; |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | // Getting all the people who have filled this survey |
73 | 73 | $answered_data = SurveyManager::get_people_who_filled_survey($survey_id); |
74 | 74 | if ($survey_data['anonymous'] == 1) { |
75 | - Display::display_normal_message(get_lang('AnonymousSurveyCannotKnowWhoAnswered').' '.count($answered_data).' '.get_lang('PeopleAnswered')); |
|
76 | - $answered_data = array(); |
|
75 | + Display::display_normal_message(get_lang('AnonymousSurveyCannotKnowWhoAnswered').' '.count($answered_data).' '.get_lang('PeopleAnswered')); |
|
76 | + $answered_data = array(); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | if (!isset($_GET['view']) OR $_GET['view'] == 'invited') { |
80 | - echo get_lang('ViewInvited'). ' | '; |
|
80 | + echo get_lang('ViewInvited'). ' | '; |
|
81 | 81 | } else { |
82 | - echo ' <a href="'.api_get_self().'?survey_id='.$survey_id.'&view=invited">'.get_lang('ViewInvited').'</a> |'; |
|
82 | + echo ' <a href="'.api_get_self().'?survey_id='.$survey_id.'&view=invited">'.get_lang('ViewInvited').'</a> |'; |
|
83 | 83 | } |
84 | 84 | if ($_GET['view'] == 'answered') { |
85 | - echo get_lang('ViewAnswered').' | '; |
|
85 | + echo get_lang('ViewAnswered').' | '; |
|
86 | 86 | } else { |
87 | - echo ' <a href="'.api_get_self().'?survey_id='.$survey_id.'&view=answered">'.get_lang('ViewAnswered').'</a> |'; |
|
87 | + echo ' <a href="'.api_get_self().'?survey_id='.$survey_id.'&view=answered">'.get_lang('ViewAnswered').'</a> |'; |
|
88 | 88 | } |
89 | 89 | if ($_GET['view'] == 'unanswered') { |
90 | - echo get_lang('ViewUnanswered'); |
|
90 | + echo get_lang('ViewUnanswered'); |
|
91 | 91 | } else { |
92 | - echo ' <a href="'.api_get_self().'?survey_id='.$survey_id.'&view=unanswered">'.get_lang('ViewUnanswered').'</a>'; |
|
92 | + echo ' <a href="'.api_get_self().'?survey_id='.$survey_id.'&view=unanswered">'.get_lang('ViewUnanswered').'</a>'; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | // Table header |
@@ -111,32 +111,32 @@ discard block |
||
111 | 111 | |
112 | 112 | $res = Database::query($sql); |
113 | 113 | while ($row = Database::fetch_assoc($res)) { |
114 | - if (!$_GET['view'] || |
|
115 | - $_GET['view'] == 'invited' || |
|
114 | + if (!$_GET['view'] || |
|
115 | + $_GET['view'] == 'invited' || |
|
116 | 116 | ($_GET['view'] == 'answered' && in_array($row['user'], $answered_data)) || |
117 | 117 | ($_GET['view'] == 'unanswered' && !in_array($row['user'], $answered_data)) |
118 | 118 | ) { |
119 | - echo '<tr>'; |
|
120 | - if (is_numeric($row['user'])) { |
|
119 | + echo '<tr>'; |
|
120 | + if (is_numeric($row['user'])) { |
|
121 | 121 | $userInfo = api_get_user_info($row['user']); |
122 | - echo '<td>'; |
|
122 | + echo '<td>'; |
|
123 | 123 | echo UserManager::getUserProfileLink($userInfo); |
124 | 124 | echo '</td>'; |
125 | - } else { |
|
125 | + } else { |
|
126 | 126 | echo '<td>'.$row['user'].'</td>'; |
127 | - } |
|
128 | - echo ' <td>'.$row['invitation_date'].'</td>'; |
|
129 | - echo ' <td>'; |
|
130 | - |
|
131 | - if (in_array($row['user'], $answered_data)) { |
|
132 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/reporting.php?action=userreport&survey_id='.$survey_id.'&user='.$row['user'].'">'.get_lang('ViewAnswers').'</a>'; |
|
133 | - } else { |
|
134 | - echo '-'; |
|
135 | - } |
|
136 | - |
|
137 | - echo ' </td>'; |
|
138 | - echo '</tr>'; |
|
139 | - } |
|
127 | + } |
|
128 | + echo ' <td>'.$row['invitation_date'].'</td>'; |
|
129 | + echo ' <td>'; |
|
130 | + |
|
131 | + if (in_array($row['user'], $answered_data)) { |
|
132 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/reporting.php?action=userreport&survey_id='.$survey_id.'&user='.$row['user'].'">'.get_lang('ViewAnswers').'</a>'; |
|
133 | + } else { |
|
134 | + echo '-'; |
|
135 | + } |
|
136 | + |
|
137 | + echo ' </td>'; |
|
138 | + echo '</tr>'; |
|
139 | + } |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | // Closing the table |
@@ -20,8 +20,8 @@ discard block |
||
20 | 20 | // Coach can't view this page |
21 | 21 | $extend_rights_for_coachs = api_get_setting('extend_rights_for_coach_on_survey'); |
22 | 22 | $isDrhOfCourse = CourseManager::isUserSubscribedInCourseAsDrh( |
23 | - api_get_user_id(), |
|
24 | - api_get_course_info() |
|
23 | + api_get_user_id(), |
|
24 | + api_get_course_info() |
|
25 | 25 | ); |
26 | 26 | |
27 | 27 | if ($isDrhOfCourse) { |
@@ -31,10 +31,10 @@ discard block |
||
31 | 31 | if (!api_is_allowed_to_edit(false, true) || |
32 | 32 | (api_is_course_coach() && $extend_rights_for_coachs == 'false') |
33 | 33 | ) { |
34 | - Display :: display_header(get_lang('ToolSurvey')); |
|
35 | - Display :: display_error_message(get_lang('NotAllowed'), false); |
|
36 | - Display :: display_footer(); |
|
37 | - exit; |
|
34 | + Display :: display_header(get_lang('ToolSurvey')); |
|
35 | + Display :: display_error_message(get_lang('NotAllowed'), false); |
|
36 | + Display :: display_footer(); |
|
37 | + exit; |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | // Database table definitions |
@@ -51,21 +51,21 @@ discard block |
||
51 | 51 | |
52 | 52 | // Breadcrumbs |
53 | 53 | $interbreadcrumb[] = array( |
54 | - 'url' => api_get_path(WEB_CODE_PATH).'survey/survey_list.php', |
|
55 | - 'name' => get_lang('SurveyList'), |
|
54 | + 'url' => api_get_path(WEB_CODE_PATH).'survey/survey_list.php', |
|
55 | + 'name' => get_lang('SurveyList'), |
|
56 | 56 | ); |
57 | 57 | |
58 | 58 | // Getting the survey information |
59 | 59 | if (!empty($_GET['survey_id'])) { |
60 | - $course_code = api_get_course_id(); |
|
61 | - if ($course_code!=-1) { |
|
62 | - $survey_data = SurveyManager::get_survey($survey_id); |
|
63 | - } else { |
|
64 | - Display :: display_header(get_lang('ToolSurvey')); |
|
65 | - Display :: display_error_message(get_lang('NotAllowed'), false); |
|
66 | - Display :: display_footer(); |
|
67 | - exit; |
|
68 | - } |
|
60 | + $course_code = api_get_course_id(); |
|
61 | + if ($course_code!=-1) { |
|
62 | + $survey_data = SurveyManager::get_survey($survey_id); |
|
63 | + } else { |
|
64 | + Display :: display_header(get_lang('ToolSurvey')); |
|
65 | + Display :: display_error_message(get_lang('NotAllowed'), false); |
|
66 | + Display :: display_footer(); |
|
67 | + exit; |
|
68 | + } |
|
69 | 69 | } else { |
70 | 70 | Display :: display_header(get_lang('ToolSurvey')); |
71 | 71 | Display :: display_error_message(get_lang('NotAllowed'), false); |
@@ -78,30 +78,30 @@ discard block |
||
78 | 78 | $is_survey_type_1 = $survey_data['survey_type'] == 1; |
79 | 79 | |
80 | 80 | if (api_strlen(strip_tags($survey_data['title'])) > 40) { |
81 | - $tool_name .= '...'; |
|
81 | + $tool_name .= '...'; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | if ($is_survey_type_1 && ($action == 'addgroup' || $action == 'deletegroup')) { |
85 | - $_POST['name'] = trim($_POST['name']); |
|
86 | - if ($action == 'addgroup') { |
|
87 | - if (!empty($_POST['group_id'])) { |
|
88 | - Database::query('UPDATE '.$table_survey_question_group.' SET description = \''.Database::escape_string($_POST['description']).'\' |
|
85 | + $_POST['name'] = trim($_POST['name']); |
|
86 | + if ($action == 'addgroup') { |
|
87 | + if (!empty($_POST['group_id'])) { |
|
88 | + Database::query('UPDATE '.$table_survey_question_group.' SET description = \''.Database::escape_string($_POST['description']).'\' |
|
89 | 89 | WHERE c_id = '.$course_id.' AND id = \''.Database::escape_string($_POST['group_id']).'\''); |
90 | - $sendmsg = 'GroupUpdatedSuccessfully'; |
|
91 | - } elseif(!empty($_POST['name'])) { |
|
92 | - Database::query('INSERT INTO '.$table_survey_question_group.' (c_id, name,description,survey_id) values ('.$course_id.', \''.Database::escape_string($_POST['name']).'\',\''.Database::escape_string($_POST['description']).'\',\''.Database::escape_string($survey_id).'\') '); |
|
93 | - $sendmsg = 'GroupCreatedSuccessfully'; |
|
94 | - } else { |
|
95 | - $sendmsg = 'GroupNeedName'; |
|
96 | - } |
|
97 | - } |
|
98 | - |
|
99 | - if ($action == 'deletegroup') { |
|
100 | - Database::query('DELETE FROM '.$table_survey_question_group.' WHERE c_id = '.$course_id.' AND id = '.intval($_GET['gid']).' and survey_id = '.intval($survey_id)); |
|
101 | - $sendmsg = 'GroupDeletedSuccessfully'; |
|
102 | - } |
|
103 | - header('Location: '.api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.$survey_id.'&sendmsg='.$sendmsg); |
|
104 | - exit; |
|
90 | + $sendmsg = 'GroupUpdatedSuccessfully'; |
|
91 | + } elseif(!empty($_POST['name'])) { |
|
92 | + Database::query('INSERT INTO '.$table_survey_question_group.' (c_id, name,description,survey_id) values ('.$course_id.', \''.Database::escape_string($_POST['name']).'\',\''.Database::escape_string($_POST['description']).'\',\''.Database::escape_string($survey_id).'\') '); |
|
93 | + $sendmsg = 'GroupCreatedSuccessfully'; |
|
94 | + } else { |
|
95 | + $sendmsg = 'GroupNeedName'; |
|
96 | + } |
|
97 | + } |
|
98 | + |
|
99 | + if ($action == 'deletegroup') { |
|
100 | + Database::query('DELETE FROM '.$table_survey_question_group.' WHERE c_id = '.$course_id.' AND id = '.intval($_GET['gid']).' and survey_id = '.intval($survey_id)); |
|
101 | + $sendmsg = 'GroupDeletedSuccessfully'; |
|
102 | + } |
|
103 | + header('Location: '.api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.$survey_id.'&sendmsg='.$sendmsg); |
|
104 | + exit; |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | // Displaying the header |
@@ -115,13 +115,13 @@ discard block |
||
115 | 115 | $message_information = isset($_GET['message']) ? Security::remove_XSS($_GET['message']) : null; |
116 | 116 | |
117 | 117 | if (isset($action)) { |
118 | - if (($action == 'moveup' || $action == 'movedown') && isset($_GET['question_id'])) { |
|
119 | - SurveyManager::move_survey_question($my_action_survey,$my_question_id_survey,$my_survey_id_survey); |
|
120 | - Display::display_confirmation_message(get_lang('SurveyQuestionMoved')); |
|
121 | - } |
|
122 | - if ($action == 'delete' AND is_numeric($_GET['question_id'])) { |
|
123 | - SurveyManager::delete_survey_question($my_survey_id_survey, $my_question_id_survey, $survey_data['is_shared']); |
|
124 | - } |
|
118 | + if (($action == 'moveup' || $action == 'movedown') && isset($_GET['question_id'])) { |
|
119 | + SurveyManager::move_survey_question($my_action_survey,$my_question_id_survey,$my_survey_id_survey); |
|
120 | + Display::display_confirmation_message(get_lang('SurveyQuestionMoved')); |
|
121 | + } |
|
122 | + if ($action == 'delete' AND is_numeric($_GET['question_id'])) { |
|
123 | + SurveyManager::delete_survey_question($my_survey_id_survey, $my_question_id_survey, $survey_data['is_shared']); |
|
124 | + } |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | if (!empty($survey_data['survey_version'])) echo '<b>'.get_lang('Version').': '.$survey_data['survey_version'].'</b>'; |
@@ -139,24 +139,24 @@ discard block |
||
139 | 139 | echo '<div class="actions">'.$survey_actions.'</div>'; |
140 | 140 | |
141 | 141 | if ($survey_data['survey_type'] == 0) { |
142 | - echo '<div class="panel panel-default">'; |
|
142 | + echo '<div class="panel panel-default">'; |
|
143 | 143 | echo '<div class="panel-body">'; |
144 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=yesno&survey_id='.$survey_id.'">'.Display::return_icon('yesno.png', get_lang('YesNo'), null, ICON_SIZE_BIG).'</a>'; |
|
145 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=multiplechoice&survey_id='.$survey_id.'">'.Display::return_icon('mcua.png', get_lang('UniqueSelect'), null, ICON_SIZE_BIG).'</a>'; |
|
146 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=multipleresponse&survey_id='.$survey_id.'">'.Display::return_icon('mcma.png', get_lang('MultipleResponse'), null, ICON_SIZE_BIG).'</a>'; |
|
147 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=open&survey_id='.$survey_id.'">'.Display::return_icon('open_answer.png', get_lang('Open'), null, ICON_SIZE_BIG).'</a>'; |
|
148 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=dropdown&survey_id='.$survey_id.'">'.Display::return_icon('dropdown.png', get_lang('Dropdown'), null, ICON_SIZE_BIG).'</a>'; |
|
149 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=percentage&survey_id='.$survey_id.'">'.Display::return_icon('percentagequestion.png', get_lang('Percentage'), null, ICON_SIZE_BIG).'</a>'; |
|
150 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=score&survey_id='.$survey_id.'">'.Display::return_icon('scorequestion.png', get_lang('Score'), null, ICON_SIZE_BIG).'</a>'; |
|
151 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=comment&survey_id='.$survey_id.'">'.Display::return_icon('commentquestion.png', get_lang('Comment'), null, ICON_SIZE_BIG).'</a>'; |
|
152 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=pagebreak&survey_id='.$survey_id.'">'.Display::return_icon('page_end.png', get_lang('Pagebreak'), null, ICON_SIZE_BIG).'</a>'; |
|
153 | - echo '</div>'; |
|
144 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=yesno&survey_id='.$survey_id.'">'.Display::return_icon('yesno.png', get_lang('YesNo'), null, ICON_SIZE_BIG).'</a>'; |
|
145 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=multiplechoice&survey_id='.$survey_id.'">'.Display::return_icon('mcua.png', get_lang('UniqueSelect'), null, ICON_SIZE_BIG).'</a>'; |
|
146 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=multipleresponse&survey_id='.$survey_id.'">'.Display::return_icon('mcma.png', get_lang('MultipleResponse'), null, ICON_SIZE_BIG).'</a>'; |
|
147 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=open&survey_id='.$survey_id.'">'.Display::return_icon('open_answer.png', get_lang('Open'), null, ICON_SIZE_BIG).'</a>'; |
|
148 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=dropdown&survey_id='.$survey_id.'">'.Display::return_icon('dropdown.png', get_lang('Dropdown'), null, ICON_SIZE_BIG).'</a>'; |
|
149 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=percentage&survey_id='.$survey_id.'">'.Display::return_icon('percentagequestion.png', get_lang('Percentage'), null, ICON_SIZE_BIG).'</a>'; |
|
150 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=score&survey_id='.$survey_id.'">'.Display::return_icon('scorequestion.png', get_lang('Score'), null, ICON_SIZE_BIG).'</a>'; |
|
151 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=comment&survey_id='.$survey_id.'">'.Display::return_icon('commentquestion.png', get_lang('Comment'), null, ICON_SIZE_BIG).'</a>'; |
|
152 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=pagebreak&survey_id='.$survey_id.'">'.Display::return_icon('page_end.png', get_lang('Pagebreak'), null, ICON_SIZE_BIG).'</a>'; |
|
153 | + echo '</div>'; |
|
154 | 154 | echo '</div>'; |
155 | 155 | } else { |
156 | - echo '<div class="panel panel-default">'; |
|
156 | + echo '<div class="panel panel-default">'; |
|
157 | 157 | echo '<div class="panel-body">'; |
158 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=personality&survey_id='.$survey_id.'"><img src="../img/icons/22/yesno.png" /></a></div>'; |
|
159 | - echo '</div>'; |
|
158 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=add&type=personality&survey_id='.$survey_id.'"><img src="../img/icons/22/yesno.png" /></a></div>'; |
|
159 | + echo '</div>'; |
|
160 | 160 | echo '</div>'; |
161 | 161 | } |
162 | 162 | |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | echo ' <th width="50" >'.get_lang('NumberOfOptions').'</th>'; |
170 | 170 | echo ' <th width="100">'.get_lang('Modify').'</th>'; |
171 | 171 | if ($is_survey_type_1) { |
172 | - echo '<th width="100">'.get_lang('Condition').'</th>'; |
|
172 | + echo '<th width="100">'.get_lang('Condition').'</th>'; |
|
173 | 173 | echo '<th width="40">'.get_lang('Group').'</th>'; |
174 | 174 | } |
175 | 175 | echo ' </tr>'; |
@@ -196,97 +196,97 @@ discard block |
||
196 | 196 | $result = Database::query($sql); |
197 | 197 | $question_counter_max = Database::num_rows($result); |
198 | 198 | while ($row = Database::fetch_array($result, 'ASSOC')) { |
199 | - echo '<tr>'; |
|
200 | - echo ' <td>'.$question_counter.'</td>'; |
|
201 | - echo ' <td>'; |
|
202 | - if (api_strlen($row['survey_question']) > 100) { |
|
203 | - echo api_substr(strip_tags($row['survey_question']), 0, 100).' ... '; |
|
204 | - } else { |
|
205 | - echo $row['survey_question']; |
|
206 | - } |
|
207 | - |
|
208 | - if ($row['type'] == 'yesno') { |
|
209 | - $tool_name = get_lang('YesNo'); |
|
210 | - } else if ($row['type'] == 'multiplechoice') { |
|
211 | - $tool_name = get_lang('UniqueSelect'); |
|
212 | - } else { |
|
213 | - $tool_name = get_lang(api_ucfirst(Security::remove_XSS($row['type']))); |
|
214 | - } |
|
215 | - |
|
216 | - echo '</td>'; |
|
217 | - echo ' <td>'.$tool_name.'</td>'; |
|
218 | - echo ' <td>'.$row['number_of_options'].'</td>'; |
|
219 | - echo ' <td>'; |
|
220 | - echo ' <a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=edit&type='.$row['type'].'&survey_id='.$survey_id.'&question_id='.$row['question_id'].'">'.Display::return_icon('edit.png', get_lang('Edit'),'',ICON_SIZE_SMALL).'</a>'; |
|
221 | - echo ' <a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?'.api_get_cidreq().'&action=delete&survey_id='.$survey_id.'&question_id='.$row['question_id'].'" onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang("DeleteSurveyQuestion").'?',ENT_QUOTES,$charset)).'\')) return false;">'.Display::return_icon('delete.png', get_lang('Delete'),'',ICON_SIZE_SMALL).'</a>'; |
|
222 | - if ($question_counter > 1) { |
|
223 | - echo ' <a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?'.api_get_cidreq().'&action=moveup&survey_id='.$survey_id.'&question_id='.$row['question_id'].'">'.Display::return_icon('up.png', get_lang('MoveUp'),'',ICON_SIZE_SMALL).'</a>'; |
|
224 | - } else { |
|
225 | - Display::display_icon('up_na.png',' ','',ICON_SIZE_SMALL); |
|
226 | - } |
|
227 | - if ($question_counter < $question_counter_max) { |
|
228 | - echo ' <a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?'.api_get_cidreq().'&action=movedown&survey_id='.$survey_id.'&question_id='.$row['question_id'].'">'.Display::return_icon('down.png', get_lang('MoveDown'),'',ICON_SIZE_SMALL).'</a>'; |
|
229 | - } else { |
|
230 | - Display::display_icon('down_na.png',' ','',ICON_SIZE_SMALL); |
|
231 | - } |
|
232 | - echo ' </td>'; |
|
233 | - $question_counter++; |
|
234 | - |
|
235 | - if ($is_survey_type_1) { |
|
236 | - echo '<td>'.(($row['survey_group_pri']==0)?get_lang('Secondary'):get_lang('Primary')).'</td>'; |
|
199 | + echo '<tr>'; |
|
200 | + echo ' <td>'.$question_counter.'</td>'; |
|
201 | + echo ' <td>'; |
|
202 | + if (api_strlen($row['survey_question']) > 100) { |
|
203 | + echo api_substr(strip_tags($row['survey_question']), 0, 100).' ... '; |
|
204 | + } else { |
|
205 | + echo $row['survey_question']; |
|
206 | + } |
|
207 | + |
|
208 | + if ($row['type'] == 'yesno') { |
|
209 | + $tool_name = get_lang('YesNo'); |
|
210 | + } else if ($row['type'] == 'multiplechoice') { |
|
211 | + $tool_name = get_lang('UniqueSelect'); |
|
212 | + } else { |
|
213 | + $tool_name = get_lang(api_ucfirst(Security::remove_XSS($row['type']))); |
|
214 | + } |
|
215 | + |
|
216 | + echo '</td>'; |
|
217 | + echo ' <td>'.$tool_name.'</td>'; |
|
218 | + echo ' <td>'.$row['number_of_options'].'</td>'; |
|
219 | + echo ' <td>'; |
|
220 | + echo ' <a href="'.api_get_path(WEB_CODE_PATH).'survey/question.php?'.api_get_cidreq().'&action=edit&type='.$row['type'].'&survey_id='.$survey_id.'&question_id='.$row['question_id'].'">'.Display::return_icon('edit.png', get_lang('Edit'),'',ICON_SIZE_SMALL).'</a>'; |
|
221 | + echo ' <a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?'.api_get_cidreq().'&action=delete&survey_id='.$survey_id.'&question_id='.$row['question_id'].'" onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang("DeleteSurveyQuestion").'?',ENT_QUOTES,$charset)).'\')) return false;">'.Display::return_icon('delete.png', get_lang('Delete'),'',ICON_SIZE_SMALL).'</a>'; |
|
222 | + if ($question_counter > 1) { |
|
223 | + echo ' <a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?'.api_get_cidreq().'&action=moveup&survey_id='.$survey_id.'&question_id='.$row['question_id'].'">'.Display::return_icon('up.png', get_lang('MoveUp'),'',ICON_SIZE_SMALL).'</a>'; |
|
224 | + } else { |
|
225 | + Display::display_icon('up_na.png',' ','',ICON_SIZE_SMALL); |
|
226 | + } |
|
227 | + if ($question_counter < $question_counter_max) { |
|
228 | + echo ' <a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?'.api_get_cidreq().'&action=movedown&survey_id='.$survey_id.'&question_id='.$row['question_id'].'">'.Display::return_icon('down.png', get_lang('MoveDown'),'',ICON_SIZE_SMALL).'</a>'; |
|
229 | + } else { |
|
230 | + Display::display_icon('down_na.png',' ','',ICON_SIZE_SMALL); |
|
231 | + } |
|
232 | + echo ' </td>'; |
|
233 | + $question_counter++; |
|
234 | + |
|
235 | + if ($is_survey_type_1) { |
|
236 | + echo '<td>'.(($row['survey_group_pri']==0)?get_lang('Secondary'):get_lang('Primary')).'</td>'; |
|
237 | 237 | echo '<td>'.(($row['survey_group_pri']==0)?$groups[$row['survey_group_sec1']].'-'.$groups[$row['survey_group_sec2']]:$groups[$row['survey_group_pri']]).'</td>'; |
238 | 238 | } |
239 | - echo '</tr>'; |
|
239 | + echo '</tr>'; |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | echo '</table>'; |
243 | 243 | |
244 | 244 | if ($is_survey_type_1) { |
245 | - echo '<br /><br /><b>'.get_lang('ManageGroups').'</b><br /><br />'; |
|
246 | - |
|
247 | - if (in_array($_GET['sendmsg'], array('GroupUpdatedSuccessfully', 'GroupDeletedSuccessfully', 'GroupCreatedSuccessfully'))) { |
|
248 | - echo Display::display_confirmation_message(get_lang($_GET['sendmsg']), false); |
|
249 | - } |
|
250 | - |
|
251 | - if (in_array($_GET['sendmsg'], array('GroupNeedName'))){ |
|
252 | - echo Display::display_warning_message(get_lang($_GET['sendmsg']), false); |
|
253 | - } |
|
254 | - echo '<table border="0"><tr><td width="100">'.get_lang('Name').'</td><td>'.get_lang('Description').'</td></tr></table>'; |
|
255 | - echo '<form action="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?action=addgroup&survey_id='.$survey_id.'" method="post">'; |
|
256 | - if ($_GET['action'] == 'editgroup') { |
|
257 | - $sql = 'SELECT name,description FROM '.$table_survey_question_group.' WHERE id = '.intval($_GET['gid']).' AND survey_id = '.intval($survey_id).' limit 1'; |
|
258 | - $rs = Database::query($sql); |
|
259 | - $editedrow = Database::fetch_array($rs,'ASSOC'); |
|
260 | - echo '<input type="text" maxlength="20" name="name" value="'.$editedrow['name'].'" size="10" disabled>'; |
|
261 | - echo '<input type="text" maxlength="150" name="description" value="'.$editedrow['description'].'" size="40">'; |
|
262 | - echo '<input type="hidden" name="group_id" value="'.Security::remove_XSS($_GET['gid']).'">'; |
|
263 | - echo '<input type="submit" value="'.get_lang('Save').'"'.'<input type="button" value="'.get_lang('Cancel').'" onclick="window.location.href = \'survey.php?survey_id='.Security::remove_XSS($survey_id).'\';" />'; |
|
264 | - } else { |
|
265 | - echo '<input type="text" maxlength="20" name="name" value="" size="10">'; |
|
266 | - echo '<input type="text" maxlength="250" name="description" value="" size="80">'; |
|
267 | - echo '<input type="submit" value="'.get_lang('Create').'"'; |
|
268 | - } |
|
269 | - echo '</form><br />'; |
|
270 | - |
|
271 | - echo '<table class="data_table">'; |
|
272 | - echo ' <tr class="row_odd">'; |
|
273 | - echo ' <th width="200">'.get_lang('Name').'</th>'; |
|
274 | - echo ' <th>'.get_lang('Description').'</th>'; |
|
275 | - echo ' <th width="100">'.get_lang('Modify').'</th>'; |
|
276 | - echo ' </tr>'; |
|
277 | - |
|
278 | - $sql = 'SELECT id,name,description FROM '.$table_survey_question_group.' WHERE c_id = '.$course_id.' AND survey_id = '.intval($survey_id).' ORDER BY name'; |
|
279 | - |
|
280 | - $rs = Database::query($sql); |
|
281 | - while($row = Database::fetch_array($rs,ASSOC)){ |
|
282 | - $grouplist .= '<tr><td>'.$row['name'].'</td><td>'.$row['description'].'</td><td>'. |
|
283 | - '<a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.$survey_id.'&gid='.$row['id'].'&action=editgroup">'. |
|
284 | - Display::return_icon('edit.png', get_lang('Edit'),'',ICON_SIZE_SMALL).'</a> '. |
|
285 | - '<a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.$survey_id.'&gid='.$row['id'].'&action=deletegroup" onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(sprintf(get_lang('DeleteSurveyGroup'),$row['name']).'?',ENT_QUOTES)).'\')) return false;">'. |
|
286 | - Display::return_icon('delete.png', get_lang('Delete'),'',ICON_SIZE_SMALL).'</a>'. |
|
287 | - '</td></tr>'; |
|
288 | - } |
|
289 | - echo $grouplist.'</table>'; |
|
245 | + echo '<br /><br /><b>'.get_lang('ManageGroups').'</b><br /><br />'; |
|
246 | + |
|
247 | + if (in_array($_GET['sendmsg'], array('GroupUpdatedSuccessfully', 'GroupDeletedSuccessfully', 'GroupCreatedSuccessfully'))) { |
|
248 | + echo Display::display_confirmation_message(get_lang($_GET['sendmsg']), false); |
|
249 | + } |
|
250 | + |
|
251 | + if (in_array($_GET['sendmsg'], array('GroupNeedName'))){ |
|
252 | + echo Display::display_warning_message(get_lang($_GET['sendmsg']), false); |
|
253 | + } |
|
254 | + echo '<table border="0"><tr><td width="100">'.get_lang('Name').'</td><td>'.get_lang('Description').'</td></tr></table>'; |
|
255 | + echo '<form action="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?action=addgroup&survey_id='.$survey_id.'" method="post">'; |
|
256 | + if ($_GET['action'] == 'editgroup') { |
|
257 | + $sql = 'SELECT name,description FROM '.$table_survey_question_group.' WHERE id = '.intval($_GET['gid']).' AND survey_id = '.intval($survey_id).' limit 1'; |
|
258 | + $rs = Database::query($sql); |
|
259 | + $editedrow = Database::fetch_array($rs,'ASSOC'); |
|
260 | + echo '<input type="text" maxlength="20" name="name" value="'.$editedrow['name'].'" size="10" disabled>'; |
|
261 | + echo '<input type="text" maxlength="150" name="description" value="'.$editedrow['description'].'" size="40">'; |
|
262 | + echo '<input type="hidden" name="group_id" value="'.Security::remove_XSS($_GET['gid']).'">'; |
|
263 | + echo '<input type="submit" value="'.get_lang('Save').'"'.'<input type="button" value="'.get_lang('Cancel').'" onclick="window.location.href = \'survey.php?survey_id='.Security::remove_XSS($survey_id).'\';" />'; |
|
264 | + } else { |
|
265 | + echo '<input type="text" maxlength="20" name="name" value="" size="10">'; |
|
266 | + echo '<input type="text" maxlength="250" name="description" value="" size="80">'; |
|
267 | + echo '<input type="submit" value="'.get_lang('Create').'"'; |
|
268 | + } |
|
269 | + echo '</form><br />'; |
|
270 | + |
|
271 | + echo '<table class="data_table">'; |
|
272 | + echo ' <tr class="row_odd">'; |
|
273 | + echo ' <th width="200">'.get_lang('Name').'</th>'; |
|
274 | + echo ' <th>'.get_lang('Description').'</th>'; |
|
275 | + echo ' <th width="100">'.get_lang('Modify').'</th>'; |
|
276 | + echo ' </tr>'; |
|
277 | + |
|
278 | + $sql = 'SELECT id,name,description FROM '.$table_survey_question_group.' WHERE c_id = '.$course_id.' AND survey_id = '.intval($survey_id).' ORDER BY name'; |
|
279 | + |
|
280 | + $rs = Database::query($sql); |
|
281 | + while($row = Database::fetch_array($rs,ASSOC)){ |
|
282 | + $grouplist .= '<tr><td>'.$row['name'].'</td><td>'.$row['description'].'</td><td>'. |
|
283 | + '<a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.$survey_id.'&gid='.$row['id'].'&action=editgroup">'. |
|
284 | + Display::return_icon('edit.png', get_lang('Edit'),'',ICON_SIZE_SMALL).'</a> '. |
|
285 | + '<a href="'.api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.$survey_id.'&gid='.$row['id'].'&action=deletegroup" onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(sprintf(get_lang('DeleteSurveyGroup'),$row['name']).'?',ENT_QUOTES)).'\')) return false;">'. |
|
286 | + Display::return_icon('delete.png', get_lang('Delete'),'',ICON_SIZE_SMALL).'</a>'. |
|
287 | + '</td></tr>'; |
|
288 | + } |
|
289 | + echo $grouplist.'</table>'; |
|
290 | 290 | } |
291 | 291 | |
292 | 292 | Session::erase('answer_count'); |
@@ -43,10 +43,10 @@ discard block |
||
43 | 43 | |
44 | 44 | // We exit here if there is no valid $_GET parameter |
45 | 45 | if (!isset($_GET['survey_id']) || !is_numeric($_GET['survey_id'])){ |
46 | - Display::display_header(get_lang('SurveyPreview')); |
|
47 | - Display::display_error_message(get_lang('InvallidSurvey'), false); |
|
48 | - Display::display_footer(); |
|
49 | - exit; |
|
46 | + Display::display_header(get_lang('SurveyPreview')); |
|
47 | + Display::display_error_message(get_lang('InvallidSurvey'), false); |
|
48 | + Display::display_footer(); |
|
49 | + exit; |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | // Getting the survey information |
@@ -54,17 +54,17 @@ discard block |
||
54 | 54 | $survey_data = SurveyManager::get_survey($survey_id); |
55 | 55 | |
56 | 56 | if (empty($survey_data)) { |
57 | - Display::display_header(get_lang('SurveyPreview')); |
|
58 | - Display::display_error_message(get_lang('InvallidSurvey'), false); |
|
59 | - Display::display_footer(); |
|
60 | - exit; |
|
57 | + Display::display_header(get_lang('SurveyPreview')); |
|
58 | + Display::display_error_message(get_lang('InvallidSurvey'), false); |
|
59 | + Display::display_footer(); |
|
60 | + exit; |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | $urlname = strip_tags($survey_data['title']); |
64 | 64 | if (api_is_allowed_to_edit()) { |
65 | - // Breadcrumbs |
|
66 | - $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'survey/survey_list.php', 'name' => get_lang('SurveyList')); |
|
67 | - $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.$survey_id, 'name' => $urlname); |
|
65 | + // Breadcrumbs |
|
66 | + $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'survey/survey_list.php', 'name' => get_lang('SurveyList')); |
|
67 | + $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'survey/survey.php?survey_id='.$survey_id, 'name' => $urlname); |
|
68 | 68 | } |
69 | 69 | $courseCode = isset($_GET['cidReq']) ? $_GET['cidReq'] : null; |
70 | 70 | $surveyAnonymous = SurveyManager::get_survey($survey_id, 0, $courseCode); |
@@ -92,57 +92,57 @@ discard block |
||
92 | 92 | $counter_question = 0; |
93 | 93 | // Only a course admin is allowed to preview a survey: you are a course admin |
94 | 94 | if (api_is_course_admin() || |
95 | - (api_is_course_admin() && $_GET['isStudentView'] == 'true') || |
|
96 | - api_is_allowed_to_session_edit(false, true) |
|
95 | + (api_is_course_admin() && $_GET['isStudentView'] == 'true') || |
|
96 | + api_is_allowed_to_session_edit(false, true) |
|
97 | 97 | ) { |
98 | - // Survey information |
|
99 | - echo '<div id="survey_title">'.$survey_data['survey_title'].'</div>'; |
|
100 | - echo '<div id="survey_subtitle">'.$survey_data['survey_subtitle'].'</div>'; |
|
98 | + // Survey information |
|
99 | + echo '<div id="survey_title">'.$survey_data['survey_title'].'</div>'; |
|
100 | + echo '<div id="survey_subtitle">'.$survey_data['survey_subtitle'].'</div>'; |
|
101 | 101 | |
102 | - // Displaying the survey introduction |
|
103 | - if (!isset($_GET['show'])) { |
|
102 | + // Displaying the survey introduction |
|
103 | + if (!isset($_GET['show'])) { |
|
104 | 104 | if (!empty($survey_data['survey_introduction'])) { |
105 | 105 | echo '<div id="survey_content" class="survey_content">'.$survey_data['survey_introduction'].'</div>'; |
106 | 106 | } |
107 | - $limit = 0; |
|
108 | - } |
|
107 | + $limit = 0; |
|
108 | + } |
|
109 | 109 | |
110 | - // Displaying the survey thanks message |
|
111 | - if (isset($_POST['finish_survey'])) { |
|
112 | - Display::display_confirmation_message(get_lang('SurveyFinished')); |
|
110 | + // Displaying the survey thanks message |
|
111 | + if (isset($_POST['finish_survey'])) { |
|
112 | + Display::display_confirmation_message(get_lang('SurveyFinished')); |
|
113 | 113 | echo $survey_data['survey_thanks']; |
114 | - Display :: display_footer(); |
|
115 | - exit; |
|
116 | - } |
|
114 | + Display :: display_footer(); |
|
115 | + exit; |
|
116 | + } |
|
117 | 117 | |
118 | 118 | $questions = array(); |
119 | 119 | |
120 | - if (isset($_GET['show'])) { |
|
121 | - // Getting all the questions for this page and add them to a |
|
122 | - // multidimensional array where the first index is the page. |
|
123 | - // as long as there is no pagebreak fount we keep adding questions to the page |
|
124 | - $questions_displayed = array(); |
|
125 | - $paged_questions = array(); |
|
126 | - $counter = 0; |
|
127 | - $sql = "SELECT * FROM $table_survey_question |
|
120 | + if (isset($_GET['show'])) { |
|
121 | + // Getting all the questions for this page and add them to a |
|
122 | + // multidimensional array where the first index is the page. |
|
123 | + // as long as there is no pagebreak fount we keep adding questions to the page |
|
124 | + $questions_displayed = array(); |
|
125 | + $paged_questions = array(); |
|
126 | + $counter = 0; |
|
127 | + $sql = "SELECT * FROM $table_survey_question |
|
128 | 128 | WHERE c_id = $course_id AND survey_id = '".intval($survey_id)."' |
129 | 129 | ORDER BY sort ASC"; |
130 | - $result = Database::query($sql); |
|
130 | + $result = Database::query($sql); |
|
131 | 131 | $questions_exists = true; |
132 | 132 | if (Database::num_rows($result)) { |
133 | - while ($row = Database::fetch_array($result)) { |
|
134 | - if ($row['type'] == 'pagebreak') { |
|
135 | - $counter++; |
|
136 | - } else { |
|
137 | - $paged_questions[$counter][] = $row['question_id']; |
|
138 | - } |
|
139 | - } |
|
133 | + while ($row = Database::fetch_array($result)) { |
|
134 | + if ($row['type'] == 'pagebreak') { |
|
135 | + $counter++; |
|
136 | + } else { |
|
137 | + $paged_questions[$counter][] = $row['question_id']; |
|
138 | + } |
|
139 | + } |
|
140 | 140 | } else { |
141 | 141 | $questions_exists = false; |
142 | 142 | } |
143 | 143 | |
144 | - if (array_key_exists($_GET['show'], $paged_questions)) { |
|
145 | - $sql = "SELECT |
|
144 | + if (array_key_exists($_GET['show'], $paged_questions)) { |
|
145 | + $sql = "SELECT |
|
146 | 146 | survey_question.question_id, |
147 | 147 | survey_question.survey_id, |
148 | 148 | survey_question.survey_question, |
@@ -164,75 +164,75 @@ discard block |
||
164 | 164 | survey_question.c_id = $course_id |
165 | 165 | ORDER BY survey_question.sort, survey_question_option.sort ASC"; |
166 | 166 | |
167 | - $result = Database::query($sql); |
|
168 | - $question_counter_max = Database::num_rows($result); |
|
169 | - $limit = 0; |
|
170 | - while ($row = Database::fetch_array($result)) { |
|
171 | - // If the type is not a pagebreak we store it in the $questions array |
|
172 | - if ($row['type'] != 'pagebreak') { |
|
173 | - $questions[$row['sort']]['question_id'] = $row['question_id']; |
|
174 | - $questions[$row['sort']]['survey_id'] = $row['survey_id']; |
|
175 | - $questions[$row['sort']]['survey_question'] = $row['survey_question']; |
|
176 | - $questions[$row['sort']]['display'] = $row['display']; |
|
177 | - $questions[$row['sort']]['type'] = $row['type']; |
|
178 | - $questions[$row['sort']]['options'][intval($row['option_sort'])] = $row['option_text']; |
|
179 | - $questions[$row['sort']]['maximum_score'] = $row['max_value']; |
|
180 | - } else { |
|
181 | - // If the type is a pagebreak we are finished loading the questions for this page |
|
182 | - break; |
|
183 | - } |
|
184 | - $counter_question++; |
|
185 | - } |
|
186 | - } |
|
187 | - } |
|
188 | - |
|
189 | - // Selecting the maximum number of pages |
|
190 | - $sql = "SELECT * FROM $table_survey_question |
|
167 | + $result = Database::query($sql); |
|
168 | + $question_counter_max = Database::num_rows($result); |
|
169 | + $limit = 0; |
|
170 | + while ($row = Database::fetch_array($result)) { |
|
171 | + // If the type is not a pagebreak we store it in the $questions array |
|
172 | + if ($row['type'] != 'pagebreak') { |
|
173 | + $questions[$row['sort']]['question_id'] = $row['question_id']; |
|
174 | + $questions[$row['sort']]['survey_id'] = $row['survey_id']; |
|
175 | + $questions[$row['sort']]['survey_question'] = $row['survey_question']; |
|
176 | + $questions[$row['sort']]['display'] = $row['display']; |
|
177 | + $questions[$row['sort']]['type'] = $row['type']; |
|
178 | + $questions[$row['sort']]['options'][intval($row['option_sort'])] = $row['option_text']; |
|
179 | + $questions[$row['sort']]['maximum_score'] = $row['max_value']; |
|
180 | + } else { |
|
181 | + // If the type is a pagebreak we are finished loading the questions for this page |
|
182 | + break; |
|
183 | + } |
|
184 | + $counter_question++; |
|
185 | + } |
|
186 | + } |
|
187 | + } |
|
188 | + |
|
189 | + // Selecting the maximum number of pages |
|
190 | + $sql = "SELECT * FROM $table_survey_question |
|
191 | 191 | WHERE |
192 | 192 | c_id = $course_id AND |
193 | 193 | type='".Database::escape_string('pagebreak')."' AND |
194 | 194 | survey_id='".intval($survey_id)."'"; |
195 | - $result = Database::query($sql); |
|
196 | - $numberofpages = Database::num_rows($result) + 1; |
|
197 | - |
|
198 | - // Displaying the form with the questions |
|
199 | - if (isset($_GET['show'])) { |
|
200 | - $show = (int)$_GET['show'] + 1; |
|
201 | - } else { |
|
202 | - $show = 0; |
|
203 | - } |
|
204 | - |
|
205 | - $url = api_get_self().'?survey_id='.Security::remove_XSS($survey_id).'&show='.$show; |
|
206 | - $form = new FormValidator('question', 'post', $url); |
|
207 | - |
|
208 | - if (is_array($questions) && count($questions) > 0) { |
|
209 | - foreach ($questions as $key => & $question) { |
|
210 | - $ch_type = 'ch_'.$question['type']; |
|
211 | - /** @var survey_question $display */ |
|
212 | - $display = new $ch_type; |
|
213 | - $form->addHtml('<div class="survey_question_wrapper"><div class="survey_question">'); |
|
214 | - $form->addHtml($question['survey_question']); |
|
215 | - $display->render($form, $question); |
|
216 | - $form->addHtml('</div></div>'); |
|
217 | - } |
|
218 | - } |
|
219 | - |
|
220 | - if (($show < $numberofpages) || (!$_GET['show'] && count($questions) > 0)) { |
|
195 | + $result = Database::query($sql); |
|
196 | + $numberofpages = Database::num_rows($result) + 1; |
|
197 | + |
|
198 | + // Displaying the form with the questions |
|
199 | + if (isset($_GET['show'])) { |
|
200 | + $show = (int)$_GET['show'] + 1; |
|
201 | + } else { |
|
202 | + $show = 0; |
|
203 | + } |
|
204 | + |
|
205 | + $url = api_get_self().'?survey_id='.Security::remove_XSS($survey_id).'&show='.$show; |
|
206 | + $form = new FormValidator('question', 'post', $url); |
|
207 | + |
|
208 | + if (is_array($questions) && count($questions) > 0) { |
|
209 | + foreach ($questions as $key => & $question) { |
|
210 | + $ch_type = 'ch_'.$question['type']; |
|
211 | + /** @var survey_question $display */ |
|
212 | + $display = new $ch_type; |
|
213 | + $form->addHtml('<div class="survey_question_wrapper"><div class="survey_question">'); |
|
214 | + $form->addHtml($question['survey_question']); |
|
215 | + $display->render($form, $question); |
|
216 | + $form->addHtml('</div></div>'); |
|
217 | + } |
|
218 | + } |
|
219 | + |
|
220 | + if (($show < $numberofpages) || (!$_GET['show'] && count($questions) > 0)) { |
|
221 | 221 | if ($show == 0) { |
222 | - $form->addButton('next_survey_page', get_lang('StartSurvey'), 'arrow-right', 'success', 'large'); |
|
222 | + $form->addButton('next_survey_page', get_lang('StartSurvey'), 'arrow-right', 'success', 'large'); |
|
223 | 223 | } else { |
224 | - $form->addButton('next_survey_page', get_lang('NextQuestion'), 'arrow-right'); |
|
224 | + $form->addButton('next_survey_page', get_lang('NextQuestion'), 'arrow-right'); |
|
225 | 225 | } |
226 | - } |
|
227 | - if ($show >= $numberofpages && $_GET['show'] || (isset($_GET['show']) && count($questions) == 0)) { |
|
228 | - if ($questions_exists == false) { |
|
229 | - echo '<p>'.get_lang('ThereAreNotQuestionsForthisSurvey').'</p>'; |
|
230 | - } |
|
231 | - $form->addButton('finish_survey', get_lang('FinishSurvey'), 'arrow-right'); |
|
232 | - } |
|
233 | - $form->display(); |
|
226 | + } |
|
227 | + if ($show >= $numberofpages && $_GET['show'] || (isset($_GET['show']) && count($questions) == 0)) { |
|
228 | + if ($questions_exists == false) { |
|
229 | + echo '<p>'.get_lang('ThereAreNotQuestionsForthisSurvey').'</p>'; |
|
230 | + } |
|
231 | + $form->addButton('finish_survey', get_lang('FinishSurvey'), 'arrow-right'); |
|
232 | + } |
|
233 | + $form->display(); |
|
234 | 234 | } else { |
235 | - Display :: display_error_message(get_lang('NotAllowed'), false); |
|
235 | + Display :: display_error_message(get_lang('NotAllowed'), false); |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | // Footer |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | |
51 | 51 | $result = Database::query($sql); |
52 | 52 | if (!list($session_name,$course_title) = Database::fetch_row($result)) { |
53 | - header('Location: session_course_list.php?id_session='.$id_session); |
|
54 | - exit(); |
|
53 | + header('Location: session_course_list.php?id_session='.$id_session); |
|
54 | + exit(); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | switch ($action) { |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | <a href="<?php echo api_get_self(); ?>?id_session=<?php echo $id_session; ?>&course_code=<?php echo urlencode($course_code); ?>&page=<?php echo $page-1; ?>&sort=<?php echo $sort; ?>"><?php echo get_lang('Previous');?></a> |
123 | 123 | <?php |
124 | 124 | } else { |
125 | - echo get_lang('Previous'); |
|
125 | + echo get_lang('Previous'); |
|
126 | 126 | } |
127 | 127 | ?> |
128 | 128 | | |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | <a href="<?php echo api_get_self(); ?>?id_session=<?php echo $id_session; ?>&course_code=<?php echo urlencode($course_code); ?>&page=<?php echo $page+1; ?>&sort=<?php echo $sort; ?>"><?php echo get_lang('Next');?></a> |
133 | 133 | <?php |
134 | 134 | } else { |
135 | - echo get_lang('Next'); |
|
135 | + echo get_lang('Next'); |
|
136 | 136 | } |
137 | 137 | ?> |
138 | 138 | </div> |
@@ -154,9 +154,9 @@ discard block |
||
154 | 154 | $i=0; |
155 | 155 | foreach ($users as $key => $enreg) { |
156 | 156 | |
157 | - if ($key == $limit) { |
|
158 | - break; |
|
159 | - } |
|
157 | + if ($key == $limit) { |
|
158 | + break; |
|
159 | + } |
|
160 | 160 | ?> |
161 | 161 | <tr class="<?php echo $i?'row_odd':'row_even'; ?>"> |
162 | 162 | <td><input type="checkbox" name="idChecked[]" value="<?php echo $enreg['user_id']; ?>"></td> |
@@ -36,27 +36,27 @@ discard block |
||
36 | 36 | function search_coachs($needle) |
37 | 37 | { |
38 | 38 | $tbl_user = Database::get_main_table(TABLE_MAIN_USER); |
39 | - $xajax_response = new xajaxResponse(); |
|
40 | - $return = ''; |
|
39 | + $xajax_response = new xajaxResponse(); |
|
40 | + $return = ''; |
|
41 | 41 | |
42 | - if (!empty($needle)) { |
|
43 | - $order_clause = api_sort_by_first_name() ? ' ORDER BY firstname, lastname, username' : ' ORDER BY lastname, firstname, username'; |
|
42 | + if (!empty($needle)) { |
|
43 | + $order_clause = api_sort_by_first_name() ? ' ORDER BY firstname, lastname, username' : ' ORDER BY lastname, firstname, username'; |
|
44 | 44 | |
45 | - // search users where username or firstname or lastname begins likes $needle |
|
46 | - $sql = 'SELECT username, lastname, firstname |
|
45 | + // search users where username or firstname or lastname begins likes $needle |
|
46 | + $sql = 'SELECT username, lastname, firstname |
|
47 | 47 | FROM '.$tbl_user.' user |
48 | 48 | WHERE (username LIKE "'.$needle.'%" |
49 | 49 | OR firstname LIKE "'.$needle.'%" |
50 | 50 | OR lastname LIKE "'.$needle.'%") |
51 | 51 | AND status=1'. |
52 | - $order_clause. |
|
53 | - ' LIMIT 10'; |
|
54 | - |
|
55 | - if (api_is_multiple_url_enabled()) { |
|
56 | - $tbl_user_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER); |
|
57 | - $access_url_id = api_get_current_access_url_id(); |
|
58 | - if ($access_url_id != -1) { |
|
59 | - $sql = 'SELECT username, lastname, firstname |
|
52 | + $order_clause. |
|
53 | + ' LIMIT 10'; |
|
54 | + |
|
55 | + if (api_is_multiple_url_enabled()) { |
|
56 | + $tbl_user_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER); |
|
57 | + $access_url_id = api_get_current_access_url_id(); |
|
58 | + if ($access_url_id != -1) { |
|
59 | + $sql = 'SELECT username, lastname, firstname |
|
60 | 60 | FROM '.$tbl_user.' user |
61 | 61 | INNER JOIN '.$tbl_user_rel_access_url.' url_user |
62 | 62 | ON (url_user.user_id=user.user_id) |
@@ -70,16 +70,16 @@ discard block |
||
70 | 70 | AND status=1'. |
71 | 71 | $order_clause.' |
72 | 72 | LIMIT 10'; |
73 | - } |
|
74 | - } |
|
75 | - |
|
76 | - $rs = Database::query($sql); |
|
77 | - while ($user = Database :: fetch_array($rs)) { |
|
78 | - $return .= '<a href="javascript: void(0);" onclick="javascript: fill_coach_field(\''.$user['username'].'\')">'.api_get_person_name($user['firstname'], $user['lastname']).' ('.$user['username'].')</a><br />'; |
|
79 | - } |
|
80 | - } |
|
81 | - $xajax_response -> addAssign('ajax_list_coachs','innerHTML', api_utf8_encode($return)); |
|
82 | - return $xajax_response; |
|
73 | + } |
|
74 | + } |
|
75 | + |
|
76 | + $rs = Database::query($sql); |
|
77 | + while ($user = Database :: fetch_array($rs)) { |
|
78 | + $return .= '<a href="javascript: void(0);" onclick="javascript: fill_coach_field(\''.$user['username'].'\')">'.api_get_person_name($user['firstname'], $user['lastname']).' ('.$user['username'].')</a><br />'; |
|
79 | + } |
|
80 | + } |
|
81 | + $xajax_response -> addAssign('ajax_list_coachs','innerHTML', api_utf8_encode($return)); |
|
82 | + return $xajax_response; |
|
83 | 83 | } |
84 | 84 | $xajax -> processRequests(); |
85 | 85 | |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | </script>"; |
123 | 123 | |
124 | 124 | if (isset($_POST['formSent']) && $_POST['formSent']) { |
125 | - $formSent = 1; |
|
125 | + $formSent = 1; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | $tool_name = get_lang('AddSession'); |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | Display::display_header($tool_name); |
213 | 213 | |
214 | 214 | if (!empty($return)) { |
215 | - Display::display_error_message($return,false); |
|
215 | + Display::display_error_message($return,false); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | echo '<div class="actions">'; |
@@ -30,26 +30,26 @@ discard block |
||
30 | 30 | $result = Database::query("SELECT name FROM $tbl_session WHERE id='$id_session'"); |
31 | 31 | |
32 | 32 | if (!list($session_name)=Database::fetch_row($result)) { |
33 | - header('Location: session_list.php'); |
|
34 | - exit; |
|
33 | + header('Location: session_list.php'); |
|
34 | + exit; |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | if ($action == 'delete') { |
38 | - $idChecked = $_REQUEST['idChecked']; |
|
39 | - if (is_array($idChecked) && count($idChecked)>0) { |
|
40 | - $my_temp = array(); |
|
41 | - foreach ($idChecked as $id){ |
|
42 | - $my_temp[]= Database::escape_string($id);// forcing the escape_string |
|
43 | - } |
|
44 | - $idChecked = $my_temp; |
|
45 | - $idChecked="'".implode("','", $idChecked)."'"; |
|
46 | - $result = Database::query("DELETE FROM $tbl_session_rel_course WHERE session_id='$id_session' AND c_id IN($idChecked)"); |
|
47 | - $nbr_affected_rows=Database::affected_rows($result); |
|
48 | - Database::query("DELETE FROM $tbl_session_rel_course_rel_user WHERE session_id='$id_session' AND c_id IN($idChecked)"); |
|
49 | - Database::query("UPDATE $tbl_session SET nbr_courses=nbr_courses-$nbr_affected_rows WHERE id='$id_session'"); |
|
50 | - } |
|
51 | - header('Location: '.api_get_self().'?id_session='.$id_session.'&sort='.$sort); |
|
52 | - exit(); |
|
38 | + $idChecked = $_REQUEST['idChecked']; |
|
39 | + if (is_array($idChecked) && count($idChecked)>0) { |
|
40 | + $my_temp = array(); |
|
41 | + foreach ($idChecked as $id){ |
|
42 | + $my_temp[]= Database::escape_string($id);// forcing the escape_string |
|
43 | + } |
|
44 | + $idChecked = $my_temp; |
|
45 | + $idChecked="'".implode("','", $idChecked)."'"; |
|
46 | + $result = Database::query("DELETE FROM $tbl_session_rel_course WHERE session_id='$id_session' AND c_id IN($idChecked)"); |
|
47 | + $nbr_affected_rows=Database::affected_rows($result); |
|
48 | + Database::query("DELETE FROM $tbl_session_rel_course_rel_user WHERE session_id='$id_session' AND c_id IN($idChecked)"); |
|
49 | + Database::query("UPDATE $tbl_session SET nbr_courses=nbr_courses-$nbr_affected_rows WHERE id='$id_session'"); |
|
50 | + } |
|
51 | + header('Location: '.api_get_self().'?id_session='.$id_session.'&sort='.$sort); |
|
52 | + exit(); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | $limit = 20; |
@@ -82,17 +82,17 @@ discard block |
||
82 | 82 | $tableCourses = array(); |
83 | 83 | |
84 | 84 | foreach ($Courses as $key=>$enreg) { |
85 | - $course = array(); |
|
86 | - $course[] = '<input type="checkbox" name="idChecked[]" value="'.$enreg['id'].'">'; |
|
87 | - $course[] = api_htmlentities($enreg['title'],ENT_QUOTES,$charset); |
|
88 | - $course[] = '<a href="session_course_user_list.php?id_session='.$id_session.'&course_code='.$enreg['code'].'">'.$enreg['nbr_users'].' '.get_lang('Users').'</a>'; |
|
89 | - $course[] = '<a href="'.api_get_path(WEB_COURSE_PATH).$enreg['code'].'/?id_session='.$id_session.'">'. |
|
90 | - Display::return_icon('course_home.gif', get_lang('Course')).'</a> |
|
85 | + $course = array(); |
|
86 | + $course[] = '<input type="checkbox" name="idChecked[]" value="'.$enreg['id'].'">'; |
|
87 | + $course[] = api_htmlentities($enreg['title'],ENT_QUOTES,$charset); |
|
88 | + $course[] = '<a href="session_course_user_list.php?id_session='.$id_session.'&course_code='.$enreg['code'].'">'.$enreg['nbr_users'].' '.get_lang('Users').'</a>'; |
|
89 | + $course[] = '<a href="'.api_get_path(WEB_COURSE_PATH).$enreg['code'].'/?id_session='.$id_session.'">'. |
|
90 | + Display::return_icon('course_home.gif', get_lang('Course')).'</a> |
|
91 | 91 | <a href="session_course_edit.php?id_session='.$id_session.'&page=session_course_list.php&course_code='.$enreg['code'].'">'. |
92 | - Display::return_icon('edit.png', get_lang('Edit')).'</a> |
|
92 | + Display::return_icon('edit.png', get_lang('Edit')).'</a> |
|
93 | 93 | <a href="'.api_get_self().'?id_session='.$id_session.'&sort='.$sort.'&action=delete&idChecked[]='.$enreg['id'].'" onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang("ConfirmYourChoice"),ENT_QUOTES,$charset)).'\')) return false;">'. |
94 | - Display::return_icon('delete.png', get_lang('Delete')).'</a>'; |
|
95 | - $tableCourses[] = $course; |
|
94 | + Display::return_icon('delete.png', get_lang('Delete')).'</a>'; |
|
95 | + $tableCourses[] = $course; |
|
96 | 96 | } |
97 | 97 | echo '<form method="post" action="'.api_get_self().'">'; |
98 | 98 | Display :: display_sortable_table($tableHeader, $tableCourses, array (), array ()); |