Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/lp/lp_report.php

179 lines
4.4 KiB

<?php
/* For licensing terms, see /license.txt */
/**
* Report from students for learning path
*/
require_once __DIR__.'/../inc/global.inc.php';
$isAllowedToEdit = api_is_allowed_to_edit(null, true);
if (!$isAllowedToEdit) {
api_not_allowed(true);
}
$lpTable = Database::get_course_table(TABLE_LP_MAIN);
$lpId = isset($_GET['lp_id']) ? intval($_GET['lp_id']) : false;
$export = isset($_GET['export']) ? true : false;
if (empty($lpId)) {
api_not_allowed(true);
}
$sessionId = api_get_session_id();
$courseId = api_get_course_int_id();
$courseCode = api_get_course_id();
if (empty($sessionId)) {
$status = STUDENT;
$users = CourseManager::get_user_list_from_course_code(
$courseCode,
0,
null,
null,
$status
);
} else {
$status = 0; // student
$users = CourseManager::get_user_list_from_course_code(
$courseCode,
$sessionId,
null,
null,
$status
);
}
$lpInfo = Database::select(
'*',
$lpTable,
array(
'where' => array(
'c_id = ? AND ' => $courseId,
'id = ?' => $lpId
)
),
'first'
);
$userList = [];
$showEmail = api_get_setting('show_email_addresses');
if (!empty($users)) {
foreach ($users as $user) {
$userInfo = api_get_user_info($user['user_id']);
$lpTime = Tracking::get_time_spent_in_lp(
$user['user_id'],
$courseCode,
array($lpId),
$sessionId
);
$lpScore = Tracking::get_avg_student_score(
$user['user_id'],
$courseCode,
array($lpId),
$sessionId
);
$lpProgress = Tracking::get_avg_student_progress(
$user['user_id'],
$courseCode,
array($lpId),
$sessionId
);
$lpLastConnection = Tracking::get_last_connection_time_in_lp(
$user['user_id'],
$courseCode,
$lpId,
$sessionId
);
$lpLastConnection = empty($lpLastConnection) ? '-' : api_convert_and_format_date(
$lpLastConnection,
DATE_TIME_FORMAT_LONG
);
$userList[] = [
'id' => $user['user_id'],
'first_name' => $userInfo['firstname'],
'last_name' => $userInfo['lastname'],
'email' => $showEmail === 'true' ? $userInfo['email'] : '',
'lp_time' => api_time_to_hms($lpTime),
'lp_score' => is_numeric($lpScore) ? "$lpScore%" : $lpScore,
'lp_progress' => "$lpProgress%",
'lp_last_connection' => $lpLastConnection
];
}
} else {
Display::addFlash(Display::return_message(get_lang('NoUserAdded'), 'warning'));
}
// View
$interbreadcrumb[] = [
'url' => api_get_path(WEB_CODE_PATH).'lp/lp_controller.php?'.api_get_cidreq(),
'name' => get_lang('LearningPaths')
];
$actions = Display::url(
Display::return_icon(
'back.png',
get_lang('Back'),
array(),
ICON_SIZE_MEDIUM
),
api_get_path(WEB_CODE_PATH).'lp/lp_controller.php?'.api_get_cidreq()
);
if (!empty($users)) {
$actions .= Display::url(
Display::return_icon(
'pdf.png',
get_lang('ExportToPdf'),
array(),
ICON_SIZE_MEDIUM
),
api_get_path(WEB_CODE_PATH).'lp/lp_controller.php?'.api_get_cidreq().'&action=report&export=pdf&lp_id='.$lpId
);
}
$template = new Template(get_lang('StudentScore'));
$template->assign('user_list', $userList);
$template->assign('session_id', api_get_session_id());
$template->assign('course_code', api_get_course_id());
$template->assign('lp_id', $lpId);
$template->assign('show_email', $showEmail === 'true');
$template->assign('export', (int) $export);
$layout = $template->get_template('learnpath/report.tpl');
$template->assign('header', $lpInfo['name']);
$template->assign(
'actions',
Display::toolbarAction('lp_actions', [$actions])
);
$result = $template->fetch($layout);
$template->assign('content', $result);
if ($export) {
$pdfParams = array(
'filename' => get_lang('StudentScore').'_'.api_get_local_time(),
//'pdf_title' => $title,
//'course_code' => $course_code
);
$pdf = new PDF('A4', 'P', $pdfParams);
$pdf->html_to_pdf_with_template(
$result,
false,
false,
true
);
exit;
}
$template->display_one_col_template();