|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
// name of the language file that needs to be included |
|
|
|
|
$language_file = array('registration', 'index', 'tracking', 'exercice', 'admin', 'gradebook'); |
|
|
|
|
$language_file = array('registration', 'index', 'tracking', 'exercice', 'admin', 'gradebook', 'survey'); |
|
|
|
|
|
|
|
|
|
$cidReset = true; |
|
|
|
|
|
|
|
|
@ -21,6 +21,8 @@ require_once api_get_path(SYS_CODE_PATH).'gradebook/lib/be/linkfactory.class.php |
|
|
|
|
require_once api_get_path(SYS_CODE_PATH).'gradebook/lib/be/category.class.php'; |
|
|
|
|
require_once api_get_path(LIBRARY_PATH).'attendance.lib.php'; |
|
|
|
|
|
|
|
|
|
require_once api_get_path(SYS_CODE_PATH).'survey/survey.lib.php'; |
|
|
|
|
|
|
|
|
|
$htmlHeadXtra[] = '<script type="text/javascript"> |
|
|
|
|
|
|
|
|
|
function show_image(image,width,height) { |
|
|
|
@ -600,6 +602,7 @@ if (empty($_GET['details'])) { |
|
|
|
|
|
|
|
|
|
if (!empty($courses)) { |
|
|
|
|
foreach ($courses as $course_code) { |
|
|
|
|
|
|
|
|
|
if (CourseManager :: is_user_subscribed_in_course($student_id, $course_code, true)) { |
|
|
|
|
$course_info = CourseManager :: get_course_information($course_code); |
|
|
|
|
|
|
|
|
@ -853,7 +856,7 @@ if (empty($_GET['details'])) { |
|
|
|
|
get_lang('Attempts') |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$t_quiz = Database :: get_course_table(TABLE_QUIZ_TEST, $info_course['db_name']); |
|
|
|
|
$t_quiz = Database :: get_course_table(TABLE_QUIZ_TEST); |
|
|
|
|
$sql_exercices = "SELECT quiz.title, id FROM " . $t_quiz . " AS quiz |
|
|
|
|
WHERE quiz.c_id = ".$info_course['real_id']." AND |
|
|
|
|
active='1' AND |
|
|
|
@ -918,6 +921,51 @@ if (empty($_GET['details'])) { |
|
|
|
|
} |
|
|
|
|
echo '</table>'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//@when using sessions we do not show the survey list |
|
|
|
|
if (empty($session_id)) { |
|
|
|
|
$survey_list = survey_manager::get_surveys($course_code, $session_id); |
|
|
|
|
|
|
|
|
|
$survey_data = array(); |
|
|
|
|
foreach($survey_list as $survey) { |
|
|
|
|
$user_list = survey_manager::get_people_who_filled_survey($survey['survey_id'], false, $info_course['real_id']); |
|
|
|
|
$survey_done = Display::return_icon("accept_na.png", get_lang('NoAnswer'), array(), 22); |
|
|
|
|
if (in_array($student_id, $user_list)) { |
|
|
|
|
$survey_done = Display::return_icon("accept.png", get_lang('Answered'), array(), 22); |
|
|
|
|
} |
|
|
|
|
$data = array('title' => $survey['title'], 'done' => $survey_done); |
|
|
|
|
$survey_data[] = $data; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!empty($survey_list)) { |
|
|
|
|
|
|
|
|
|
$table = new HTML_Table(array('class' => 'data_table')); |
|
|
|
|
$header_names = array(get_lang('Survey'), get_lang('Answered')); |
|
|
|
|
$row = 0; |
|
|
|
|
$column = 0; |
|
|
|
|
foreach ($header_names as $item) { |
|
|
|
|
$table->setHeaderContents($row, $column, $item); |
|
|
|
|
$column++; |
|
|
|
|
} |
|
|
|
|
$row = 1; |
|
|
|
|
if (!empty($survey_data)) { |
|
|
|
|
foreach ($survey_data as $data) { |
|
|
|
|
$column = 0; |
|
|
|
|
$table->setCellContents($row, $column, $data); |
|
|
|
|
//$table->setRowAttributes($row, 'style="text-align:center"'); |
|
|
|
|
$class = 'class="row_odd"'; |
|
|
|
|
if($row % 2) { |
|
|
|
|
$class = 'class="row_even"'; |
|
|
|
|
} |
|
|
|
|
$table->setRowAttributes($row, $class, true); |
|
|
|
|
$column++; |
|
|
|
|
$row++; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
echo $table->toHtml(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// line about other tools |
|
|
|
|
echo '<table class="data_table">'; |
|
|
|
|
|
|
|
|
|