123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class DisplayGradebook.
- *
- * @package chamilo.gradebook
- */
- class DisplayGradebook
- {
- /**
- * Displays the header for the result page containing the navigation tree and links.
- *
- * @param Evaluation $evalobj
- * @param $selectcat
- * @param $shownavbar 1=show navigation bar
- * @param $forpdf only output for pdf file
- */
- public static function display_header_result($evalobj, $selectcat, $page)
- {
- $header = null;
- if (api_is_allowed_to_edit(null, true)) {
- $header = '<div class="actions">';
- if ($page !== 'statistics') {
- $header .= '<a href="'.Category::getUrl().'selectcat='.$selectcat.'">'.
- Display::return_icon('back.png', get_lang('Assessment home'), '', ICON_SIZE_MEDIUM)
- .'</a>';
- if (($evalobj->get_course_code() != null) && !$evalobj->has_results()) {
- $header .= '<a href="gradebook_add_result.php?'.api_get_cidreq().'&selectcat='.$selectcat.'&selecteval='.$evalobj->get_id().'">
- '.Display::return_icon('evaluation_rate.png', get_lang('Grade learners'), '', ICON_SIZE_MEDIUM).'</a>';
- }
- if (api_is_platform_admin() || $evalobj->is_locked() == false) {
- $header .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&selecteval='.$evalobj->get_id().'&import=">'.
- Display::return_icon('import_evaluation.png', get_lang('Import marks'), '', ICON_SIZE_MEDIUM).'</a>';
- }
- if ($evalobj->has_results()) {
- $header .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&selecteval='.$evalobj->get_id().'&export=">'.
- Display::return_icon('export_evaluation.png', get_lang('PDF Report'), '', ICON_SIZE_MEDIUM).'</a>';
- if (api_is_platform_admin() || $evalobj->is_locked() == false) {
- $header .= '<a href="gradebook_edit_result.php?'.api_get_cidreq().'&selecteval='.$evalobj->get_id().'">'.
- Display::return_icon('edit.png', get_lang('Grade learners'), '', ICON_SIZE_MEDIUM).'</a>';
- $header .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&selecteval='.$evalobj->get_id().'&deleteall=" onclick="return confirmationall();">'.
- Display::return_icon('delete.png', get_lang('Delete marks'), '', ICON_SIZE_MEDIUM).'</a>';
- }
- }
- $header .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&print=&selecteval='.$evalobj->get_id().'" target="_blank">'.
- Display::return_icon('printer.png', get_lang('Print'), '', ICON_SIZE_MEDIUM).'</a>';
- } else {
- $header .= '<a href="gradebook_view_result.php?'.api_get_cidreq().'&selecteval='.Security::remove_XSS($_GET['selecteval']).'"> '.
- Display::return_icon('back.png', get_lang('Assessment home'), '', ICON_SIZE_MEDIUM).'</a>';
- }
- $header .= '</div>';
- }
- $scoredisplay = ScoreDisplay::instance();
- $student_score = '';
- $average = '';
- if ($evalobj->has_results()) {
- // TODO this check needed ?
- $score = $evalobj->calc_score();
- if ($score != null) {
- $model = ExerciseLib::getCourseScoreModel();
- if (empty($model)) {
- $average = get_lang('Average').' :<b> '.$scoredisplay->display_score($score, SCORE_AVERAGE).'</b>';
- $student_score = $evalobj->calc_score(api_get_user_id());
- $student_score = Display::tag(
- 'h3',
- get_lang('Score').': '.$scoredisplay->display_score($student_score, SCORE_DIV_PERCENT)
- );
- $allowMultipleAttempts = api_get_configuration_value('gradebook_multiple_evaluation_attempts');
- if ($allowMultipleAttempts) {
- $results = Result::load(null, api_get_user_id(), $evalobj->get_id());
- if (!empty($results)) {
- /** @var Result $resultData */
- foreach ($results as $resultData) {
- $student_score .= ResultTable::getResultAttemptTable($resultData);
- }
- }
- }
- }
- }
- }
- $description = '';
- if (!$evalobj->get_description() == '') {
- $description = get_lang('Description').' :<b> '.$evalobj->get_description().'</b><br>';
- }
- if ($evalobj->get_course_code() == null) {
- $course = get_lang('Independent from course');
- } else {
- $course = CourseManager::getCourseNameFromCode($evalobj->get_course_code());
- }
- $evalinfo = '<table width="100%" border="0"><tr><td>';
- $evalinfo .= '<h2>'.$evalobj->get_name().'</h2><hr>';
- $evalinfo .= $description;
- $evalinfo .= get_lang('Course').' :<b> '.$course.'</b><br />';
- if (empty($model)) {
- $evalinfo .= get_lang('Maximum score').' :<b> '.$evalobj->get_max().'</b><br>'.$average;
- }
- if (!api_is_allowed_to_edit()) {
- $evalinfo .= $student_score;
- }
- if (!$evalobj->has_results()) {
- $evalinfo .= '<br /><i>'.get_lang('No results in evaluation for now').'</i>';
- }
- if ($page != 'statistics') {
- if (api_is_allowed_to_edit(null, true)) {
- $evalinfo .= '<br /><a href="gradebook_statistics.php?'.api_get_cidreq().'&selecteval='.Security::remove_XSS($_GET['selecteval']).'"> '.
- Display::return_icon(
- 'statistics.png',
- get_lang('Graphical view'),
- '',
- ICON_SIZE_MEDIUM
- ).'</a>';
- }
- }
- $evalinfo .= '</td><td>'.
- Display::return_icon(
- 'tutorial.gif',
- '',
- ['style' => 'float:right; position:relative;']
- )
- .'</td></table>';
- echo $evalinfo;
- echo $header;
- }
- /**
- * Displays the header for the flatview page containing filters.
- *
- * @param $catobj
- * @param $showeval
- * @param $showlink
- */
- public static function display_header_reduce_flatview($catobj, $showeval, $showlink, $simple_search_form)
- {
- $header = '<div class="actions">';
- if ($catobj->get_parent_id() == 0) {
- $select_cat = $catobj->get_id();
- $url = Category::getUrl();
- } else {
- $select_cat = $catobj->get_parent_id();
- $url = 'gradebook_flatview.php';
- }
- $header .= '<a href="'.$url.'?'.api_get_cidreq().'&selectcat='.$select_cat.'">'.
- Display::return_icon('back.png', get_lang('Assessment home'), '', ICON_SIZE_MEDIUM).'</a>';
- $pageNum = isset($_GET['flatviewlist_page_nr']) ? intval($_GET['flatviewlist_page_nr']) : null;
- $perPage = isset($_GET['flatviewlist_per_page']) ? intval($_GET['flatviewlist_per_page']) : null;
- $offset = isset($_GET['offset']) ? $_GET['offset'] : '0';
- $exportCsvUrl = api_get_self().'?'.api_get_cidreq().'&'.http_build_query([
- 'export_format' => 'csv',
- 'export_report' => 'export_report',
- 'selectcat' => $catobj->get_id(),
- ]);
- $header .= Display::url(
- Display::return_icon(
- 'export_csv.png',
- get_lang('CSV export'),
- '',
- ICON_SIZE_MEDIUM
- ),
- $exportCsvUrl
- );
- $exportXlsUrl = api_get_self().'?'.api_get_cidreq().'&'.http_build_query([
- 'export_format' => 'xls',
- 'export_report' => 'export_report',
- 'selectcat' => $catobj->get_id(),
- ]);
- $header .= Display::url(
- Display::return_icon(
- 'export_excel.png',
- get_lang('Excel export'),
- '',
- ICON_SIZE_MEDIUM
- ),
- $exportXlsUrl
- );
- $exportDocUrl = api_get_self().'?'.api_get_cidreq().'&'.http_build_query([
- 'export_format' => 'doc',
- 'export_report' => 'export_report',
- 'selectcat' => $catobj->get_id(),
- ]);
- $header .= Display::url(
- Display::return_icon(
- 'export_doc.png',
- get_lang('Export as .doc'),
- '',
- ICON_SIZE_MEDIUM
- ),
- $exportDocUrl
- );
- $exportPrintUrl = api_get_self().'?'.api_get_cidreq().'&'.http_build_query([
- 'print' => '',
- 'selectcat' => $catobj->get_id(),
- ]);
- $header .= Display::url(
- Display::return_icon(
- 'printer.png',
- get_lang('Print'),
- '',
- ICON_SIZE_MEDIUM
- ),
- $exportPrintUrl,
- ['target' => '_blank']
- );
- $exportPdfUrl = api_get_self().'?'.api_get_cidreq().'&'.http_build_query([
- 'exportpdf' => '',
- 'selectcat' => $catobj->get_id(),
- 'offset' => $offset,
- 'flatviewlist_page_nr' => $pageNum,
- 'flatviewlist_per_page' => $perPage,
- ]);
- $header .= Display::url(
- Display::return_icon(
- 'pdf.png',
- get_lang('Export to PDF'),
- '',
- ICON_SIZE_MEDIUM
- ),
- $exportPdfUrl
- );
- $header .= '</div>';
- echo $header;
- }
- /**
- * Displays the header for the gradebook containing the navigation tree and links.
- *
- * @param Category $catobj
- * @param int $showtree '1' will show the browse tree and naviation buttons
- * @param $selectcat
- * @param bool $is_course_admin
- * @param bool $is_platform_admin
- * @param bool $simple_search_form
- * @param bool $show_add_qualification Whether to show or not the link to add a new qualification
- * (we hide it in case of the course-embedded tool where we have only one
- * per course or session)
- * @param bool $show_add_link Whether to show or not the link to add a new item inside
- * the qualification (we hide it in case of the course-embedded tool
- * where we have only one qualification per course or session)
- * @param array $certificateLinkInfo
- */
- public static function header(
- $catobj,
- $showtree,
- $selectcat,
- $is_course_admin,
- $is_platform_admin,
- $simple_search_form,
- $show_add_qualification = true,
- $show_add_link = true,
- $certificateLinkInfo = []
- ) {
- $userId = api_get_user_id();
- $courseId = api_get_course_int_id();
- $sessionId = api_get_session_id();
- if (!$is_course_admin) {
- $model = ExerciseLib::getCourseScoreModel();
- if (!empty($model)) {
- return '';
- }
- }
- // Student.
- $status = CourseManager::getUserInCourseStatus($userId, $courseId);
- $sessionStatus = 0;
- if (!empty($sessionId)) {
- $sessionStatus = SessionManager::get_user_status_in_course_session(
- $userId,
- $courseId,
- $sessionId
- );
- }
- $objcat = new Category();
- $course_id = CourseManager::get_course_by_category($selectcat);
- $message_resource = $objcat->show_message_resource_delete($course_id);
- $grade_model_id = $catobj->get_grade_model_id();
- $header = null;
- if (isset($catobj) && !empty($catobj)) {
- $categories = Category::load(
- null,
- null,
- null,
- $catobj->get_id(),
- null,
- $sessionId
- );
- }
- if (!$is_course_admin && ($status != 1 || $sessionStatus == 0) && $selectcat != 0) {
- $catcourse = Category::load($catobj->get_id());
- /** @var Category $category */
- $category = $catcourse[0];
- $main_weight = $category->get_weight();
- $scoredisplay = ScoreDisplay::instance();
- $allevals = $category->get_evaluations($userId, true);
- $alllinks = $category->get_links($userId, true);
- $allEvalsLinks = array_merge($allevals, $alllinks);
- $item_value_total = 0;
- $scoreinfo = null;
- for ($count = 0; $count < count($allEvalsLinks); $count++) {
- $item = $allEvalsLinks[$count];
- $score = $item->calc_score($userId);
- if (!empty($score)) {
- $divide = $score[1] == 0 ? 1 : $score[1];
- $item_value = $score[0] / $divide * $item->get_weight();
- $item_value_total += $item_value;
- }
- }
- $item_total = $main_weight;
- $total_score = [$item_value_total, $item_total];
- $scorecourse_display = $scoredisplay->display_score($total_score, SCORE_DIV_PERCENT);
- if (!$catobj->get_id() == '0' && !isset($_GET['studentoverview']) && !isset($_GET['search'])) {
- $additionalButtons = null;
- if (!empty($certificateLinkInfo)) {
- $additionalButtons .= '<div class="btn-group pull-right">';
- $additionalButtons .= isset($certificateLinkInfo['certificate_link']) ? $certificateLinkInfo['certificate_link'] : '';
- $additionalButtons .= isset($certificateLinkInfo['badge_link']) ? $certificateLinkInfo['badge_link'] : '';
- $additionalButtons .= '</div>';
- }
- $scoreinfo .= '<strong>'.sprintf(get_lang('Total: %s'), $scorecourse_display.$additionalButtons).'</strong>';
- }
- echo Display::return_message($scoreinfo, 'normal', false);
- }
- // show navigation tree and buttons?
- if ($showtree == '1' || isset($_GET['studentoverview'])) {
- $header = '<div class="actions"><table>';
- $header .= '<tr>';
- if (!$selectcat == '0') {
- $header .= '<td><a href="'.api_get_self().'?selectcat='.$catobj->get_parent_id().'">'.
- Display::return_icon(
- 'back.png',
- get_lang('Back to').' '.get_lang('Main folder'),
- '',
- ICON_SIZE_MEDIUM
- ).
- '</a></td>';
- }
- $header .= '<td>'.get_lang('Current course').'</td>'.
- '<td><form name="selector"><select name="selectcat" onchange="document.selector.submit()">';
- $cats = Category::load();
- $tree = $cats[0]->get_tree();
- unset($cats);
- $line = null;
- foreach ($tree as $cat) {
- for ($i = 0; $i < $cat[2]; $i++) {
- $line .= '—';
- }
- $line = isset($line) ? $line : '';
- if (isset($_GET['selectcat']) && $_GET['selectcat'] == $cat[0]) {
- $header .= '<option selected value='.$cat[0].'>'.$line.' '.$cat[1].'</option>';
- } else {
- $header .= '<option value='.$cat[0].'>'.$line.' '.$cat[1].'</option>';
- }
- $line = '';
- }
- $header .= '</select></form></td>';
- if (!empty($simple_search_form) && $message_resource === false) {
- $header .= '<td style="vertical-align: top;">'.$simple_search_form->toHtml().'</td>';
- } else {
- $header .= '<td></td>';
- }
- if (!($is_course_admin &&
- $message_resource === false &&
- isset($_GET['selectcat']) && $_GET['selectcat'] != 0) &&
- isset($_GET['studentoverview'])
- ) {
- $header .= '<td style="vertical-align: top;">
- <a href="'.api_get_self().'?'.api_get_cidreq().'&studentoverview=&exportpdf=&selectcat='.$catobj->get_id().'" target="_blank">
- '.Display::return_icon('pdf.png', get_lang('Export to PDF'), [], ICON_SIZE_MEDIUM).'
- '.get_lang('Export to PDF').'</a>';
- }
- $header .= '</td></tr>';
- $header .= '</table></div>';
- }
- // for course admin & platform admin add item buttons are added to the header
- $actionsLeft = '';
- $actionsRight = '';
- $my_api_cidreq = api_get_cidreq();
- $isCoach = api_is_coach(api_get_session_id(), api_get_course_int_id());
- $accessToRead = api_is_allowed_to_edit(null, true) || $isCoach;
- $accessToEdit = api_is_allowed_to_edit(null, true);
- $courseCode = api_get_course_id();
- if ($accessToRead) {
- $my_category = $catobj->showAllCategoryInfo($catobj->get_id());
- if ($selectcat != '0' && $accessToEdit) {
- if ($my_api_cidreq == '') {
- $my_api_cidreq = 'cidReq='.$my_category['course_code'];
- }
- if ($show_add_link && !$message_resource) {
- $actionsLeft .= '<a href="gradebook_add_eval.php?'.$my_api_cidreq.'&selectcat='.$catobj->get_id().'" >'.
- Display::return_icon('new_evaluation.png', get_lang('Add classroom activity'), '',
- ICON_SIZE_MEDIUM).'</a>';
- $cats = Category::load($selectcat);
- if ($cats[0]->get_course_code() != null && !$message_resource) {
- $actionsLeft .= '<a href="gradebook_add_link.php?'.$my_api_cidreq.'&selectcat='.$catobj->get_id().'">'.
- Display::return_icon('new_online_evaluation.png', get_lang('Add online activity'), '',
- ICON_SIZE_MEDIUM).'</a>';
- } else {
- $actionsLeft .= '<a href="gradebook_add_link_select_course.php?'.$my_api_cidreq.'&selectcat='.$catobj->get_id().'">'.
- Display::return_icon('new_online_evaluation.png', get_lang('Add online activity'), '',
- ICON_SIZE_MEDIUM).'</a>';
- }
- }
- }
- if ((empty($grade_model_id) || $grade_model_id == -1) && $accessToEdit) {
- $actionsLeft .= '<a href="gradebook_add_cat.php?'.api_get_cidreq().'&selectcat='.$catobj->get_id().'">'.
- Display::return_icon(
- 'new_folder.png',
- get_lang('Add assessment'),
- [],
- ICON_SIZE_MEDIUM
- ).'</a></td>';
- }
- if ($selectcat != '0' && $accessToRead) {
- if (!$message_resource) {
- $actionsLeft .= '<a href="gradebook_flatview.php?'.$my_api_cidreq.'&selectcat='.$catobj->get_id().'">'.
- Display::return_icon('statistics.png', get_lang('List View'), '', ICON_SIZE_MEDIUM).'</a>';
- if ($my_category['generate_certificates'] == 1) {
- $actionsLeft .= Display::url(
- Display::return_icon(
- 'certificate_list.png',
- get_lang('See list of learner certificates'),
- '',
- ICON_SIZE_MEDIUM
- ),
- "gradebook_display_certificate.php?$my_api_cidreq&cat_id=".$selectcat
- );
- }
- $actionsLeft .= Display::url(
- Display::return_icon(
- 'user.png',
- get_lang('Students list report'),
- '',
- ICON_SIZE_MEDIUM
- ),
- "gradebook_display_summary.php?$my_api_cidreq&selectcat=".$selectcat
- );
- $allow = api_get_configuration_value('gradebook_custom_student_report');
- if ($allow) {
- $actionsLeft .= Display::url(
- get_lang('Generate custom report'),
- api_get_path(WEB_AJAX_PATH)."gradebook.ajax.php?$my_api_cidreq&a=generate_custom_report",
- ['class' => 'btn btn-default ajax']
- );
- }
- // Right icons
- if ($accessToEdit) {
- $actionsRight = '<a href="gradebook_edit_cat.php?editcat='.$catobj->get_id(
- ).'&cidReq='.$catobj->get_course_code().'&id_session='.$catobj->get_session_id().'">'.
- Display::return_icon('edit.png', get_lang('Edit'), '', ICON_SIZE_MEDIUM).'</a>';
- if (api_get_plugin_setting('customcertificate', 'enable_plugin_customcertificate') == 'true' &&
- api_get_course_setting('customcertificate_course_enable') == 1
- ) {
- $actionsRight .= '<a href="'.api_get_path(
- WEB_PLUGIN_PATH
- ).'customcertificate/src/index.php?'.
- $my_api_cidreq.'&origin=gradebook&selectcat='.$catobj->get_id().'">'.
- Display::return_icon(
- 'certificate.png',
- get_lang('Attach certificate'),
- '',
- ICON_SIZE_MEDIUM
- ).'</a>';
- } else {
- $actionsRight .= '<a href="'.api_get_path(WEB_CODE_PATH).
- 'document/document.php?curdirpath=/certificates&'.
- $my_api_cidreq.'&origin=gradebook&selectcat='.$catobj->get_id().'">'.
- Display::return_icon(
- 'certificate.png',
- get_lang('Attach certificate'),
- '',
- ICON_SIZE_MEDIUM
- ).'</a>';
- }
- if (empty($categories)) {
- $actionsRight .= '<a href="gradebook_edit_all.php?id_session='.api_get_session_id(
- ).'&'.$my_api_cidreq.'&selectcat='.$catobj->get_id().'">'.
- Display::return_icon(
- 'percentage.png',
- get_lang('Weight in Report'),
- '',
- ICON_SIZE_MEDIUM
- ).'</a>';
- }
- $score_display_custom = api_get_setting('gradebook_score_display_custom');
- if (api_get_setting('teachers_can_change_score_settings') == 'true' &&
- $score_display_custom == 'true'
- ) {
- $actionsRight .= '<a href="gradebook_scoring_system.php?'.$my_api_cidreq.'&selectcat='.$catobj->get_id().'">'.
- Display::return_icon('ranking.png', get_lang('Skills ranking'), '', ICON_SIZE_MEDIUM).'</a>';
- }
- }
- }
- }
- } elseif (isset($_GET['search'])) {
- echo $header = '<b>'.get_lang('Search results').' :</b>';
- }
- $isDrhOfCourse = CourseManager::isUserSubscribedInCourseAsDrh(
- api_get_user_id(),
- api_get_course_info()
- );
- if ($isDrhOfCourse) {
- $actionsLeft .= '<a href="gradebook_flatview.php?'.$my_api_cidreq.'&selectcat='.$catobj->get_id().'">'.
- Display::return_icon(
- 'statistics.png',
- get_lang('List View'),
- '',
- ICON_SIZE_MEDIUM
- ).
- '</a>';
- }
- if ($isCoach || api_is_allowed_to_edit(null, true)) {
- echo $toolbar = Display::toolbarAction(
- 'gradebook-actions',
- [$actionsLeft, $actionsRight]
- );
- }
- if ($accessToEdit || api_is_allowed_to_edit(null, true)) {
- $weight = intval($catobj->get_weight()) > 0 ? $catobj->get_weight() : 0;
- $weight = '<strong>'.get_lang('Total weight').' : </strong>'.$weight;
- $min_certification = intval($catobj->getCertificateMinScore() > 0) ? $catobj->getCertificateMinScore() : 0;
- if (!empty($min_certification)) {
- $model = ExerciseLib::getCourseScoreModel();
- if (!empty($model)) {
- $defaultCertification = api_number_format($min_certification, 2);
- $questionWeighting = $catobj->get_weight();
- foreach ($model['score_list'] as $item) {
- $i = api_number_format($item['score_to_qualify'] / 100 * $questionWeighting, 2);
- $model = ExerciseLib::getModelStyle($item, $i);
- if ($defaultCertification == $i) {
- $min_certification = $model;
- break;
- }
- }
- }
- }
- $min_certification = get_lang('Minimum certification score').' : '.$min_certification;
- $edit_icon = '<a href="gradebook_edit_cat.php?editcat='.$catobj->get_id().'&cidReq='.$catobj->get_course_code().'&id_session='.$catobj->get_session_id().'">'.
- Display::return_icon('edit.png', get_lang('Edit'), [], ICON_SIZE_SMALL).'</a>';
- $msg = $weight.' - '.$min_certification.$edit_icon;
- //@todo show description
- $description = (($catobj->get_description() == '' || is_null($catobj->get_description())) ? '' : '<strong>'.get_lang('Assessment description').'</strong>'.': '.$catobj->get_description());
- echo Display::return_message($msg, 'normal', false);
- if (!empty($description)) {
- echo Display::div($description, []);
- }
- }
- }
- /**
- * @param Category $catobj
- * @param $is_course_admin
- * @param $is_platform_admin
- * @param $simple_search_form
- * @param bool $show_add_qualification
- * @param bool $show_add_link
- */
- public function display_reduce_header_gradebook(
- $catobj,
- $is_course_admin,
- $is_platform_admin,
- $simple_search_form,
- $show_add_qualification = true,
- $show_add_link = true
- ) {
- //student
- if (!$is_course_admin) {
- $user = api_get_user_info(api_get_user_id());
- $catcourse = Category::load($catobj->get_id());
- $scoredisplay = ScoreDisplay::instance();
- $scorecourse = $catcourse[0]->calc_score(api_get_user_id());
- $scorecourse_display = isset($scorecourse) ? $scoredisplay->display_score($scorecourse, SCORE_AVERAGE) : get_lang('No results available');
- $cattotal = Category::load(0);
- $scoretotal = $cattotal[0]->calc_score(api_get_user_id());
- $scoretotal_display = isset($scoretotal) ? $scoredisplay->display_score($scoretotal, SCORE_PERCENT) : get_lang('No results available');
- $scoreinfo = get_lang('Statistics of').' :<b> '.$user['complete_name'].'</b><br />';
- if ((!$catobj->get_id() == '0') && (!isset($_GET['studentoverview'])) && (!isset($_GET['search']))) {
- $scoreinfo .= '<br />'.get_lang('Total for this category.').' : <b>'.$scorecourse_display.'</b>';
- }
- $scoreinfo .= '<br />'.get_lang('Total').' : <b>'.$scoretotal_display.'</b>';
- Display::addFlash(
- Display::return_message($scoreinfo, 'normal', false)
- );
- }
- // show navigation tree and buttons?
- $header = '<div class="actions">';
- if ($is_course_admin) {
- $header .= '<a href="gradebook_flatview.php?'.api_get_cidreq().'&selectcat='.$catobj->get_id().'">'.Display::return_icon('statistics.png', get_lang('List View'), '', ICON_SIZE_MEDIUM).'</a>';
- $header .= '<a href="gradebook_scoring_system.php?'.api_get_cidreq().'&selectcat='.$catobj->get_id().'">'.Display::return_icon('settings.png', get_lang('Skills ranking'), '', ICON_SIZE_MEDIUM).'</a>';
- } elseif (!(isset($_GET['studentoverview']))) {
- $header .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&studentoverview=&selectcat='.$catobj->get_id().'">'.Display::return_icon('view_list.gif', get_lang('List View')).' '.get_lang('List View').'</a>';
- } else {
- $header .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&studentoverview=&exportpdf=&selectcat='.$catobj->get_id().'" target="_blank">'.Display::return_icon('pdf.png', get_lang('Export to PDF'), '', ICON_SIZE_MEDIUM).'</a>';
- }
- $header .= '</div>';
- echo $header;
- }
- /**
- * @param int $userId
- * @param int $categoryId
- *
- * @return string
- */
- public static function display_header_user($userId, $categoryId)
- {
- $user = api_get_user_info($userId);
- if (empty($user)) {
- return '';
- }
- $catcourse = Category::load($categoryId);
- $scoredisplay = ScoreDisplay::instance();
- // generating the total score for a course
- $allevals = $catcourse[0]->get_evaluations(
- $userId,
- true,
- api_get_course_id()
- );
- $alllinks = $catcourse[0]->get_links(
- $userId,
- true,
- api_get_course_id()
- );
- $evals_links = array_merge($allevals, $alllinks);
- $item_value = 0;
- $item_total = 0;
- for ($count = 0; $count < count($evals_links); $count++) {
- $item = $evals_links[$count];
- $score = $item->calc_score($userId);
- $my_score_denom = ($score[1] == 0) ? 1 : $score[1];
- $item_value += $score[0] / $my_score_denom * $item->get_weight();
- $item_total += $item->get_weight();
- }
- $item_value = api_number_format($item_value, 2);
- $total_score = [$item_value, $item_total];
- $scorecourse_display = $scoredisplay->display_score($total_score, SCORE_DIV_PERCENT);
- $info = '<div class="row"><div class="col-md-3">';
- $info .= '<div class="thumbnail"><img src="'.$user['avatar'].'" /></div>';
- $info .= '</div>';
- $info .= '<div class="col-md-6">';
- $info .= get_lang('Name').' : '.$user['complete_name_with_message_link'].'<br />';
- if (api_get_setting('show_email_addresses') == 'true') {
- $info .= get_lang('e-mail').' : <a href="mailto:'.$user['email'].'">'.$user['email'].'</a><br />';
- }
- $info .= get_lang('Total for user').' : <b>'.$scorecourse_display.'</b>';
- $info .= '</div>';
- $info .= '</div>';
- echo $info;
- }
- }
|