123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Script.
- *
- * @package chamilo.gradebook
- */
- require_once __DIR__.'/../inc/global.inc.php';
- api_block_anonymous_users();
- GradebookUtils::block_students();
- $selectCat = isset($_GET['selectcat']) ? (int) $_GET['selectcat'] : 0;
- $interbreadcrumb[] = [
- 'url' => Category::getUrl(),
- 'name' => get_lang('Assessments'),
- ];
- $interbreadcrumb[] = [
- 'url' => Category::getUrl().'selectcat='.$selectCat,
- 'name' => get_lang('Details'),
- ];
- $interbreadcrumb[] = [
- 'url' => 'gradebook_showlog_link.php?visiblelink='.Security::remove_XSS($_GET['visiblelink']).'&selectcat='.$selectCat,
- 'name' => get_lang('AssessmentsQualifyLog'),
- ];
- $this_section = SECTION_COURSES;
- Display::display_header('');
- echo '<div class="actions">';
- api_display_tool_title(get_lang('AssessmentsQualifyLog'));
- echo '</div>';
- $t_user = Database::get_main_table(TABLE_MAIN_USER);
- $t_link_log = Database::get_main_table(TABLE_MAIN_GRADEBOOK_LINKEVAL_LOG);
- $visible_link = Security::remove_XSS($_GET['visiblelink']);
- $evaledit = EvalLink:: load($visible_link);
- $sql = "SELECT lk.name,lk.description,lk.weight,lk.visible,lk.type,lk.created_at,us.username
- FROM ".$t_link_log." lk inner join ".$t_user." us
- ON lk.user_id_log=us.user_id
- WHERE lk.id_linkeval_log=".$evaledit[0]->get_id()." AND lk.type='link';";
- $result = Database::query($sql);
- $list_info = [];
- while ($row = Database::fetch_row($result)) {
- $list_info[] = $row;
- }
- foreach ($list_info as $key => $info_log) {
- $list_info[$key][5] = ($info_log[5]) ? api_convert_and_format_date($info_log[5]) : 'N/A';
- $list_info[$key][3] = ($info_log[3] == 1) ? get_lang('AssessmentsVisible') : get_lang('AssessmentsInvisible');
- }
- $parameters = [
- 'visiblelink' => Security::remove_XSS($_GET['visiblelink']),
- 'selectcat' => $selectCat,
- ];
- $table = new SortableTableFromArrayConfig($list_info, 1, 20, 'gradebooklink');
- $table->set_additional_parameters($parameters);
- $table->set_header(0, get_lang('AssessmentsNameLog'));
- $table->set_header(1, get_lang('AssessmentsDescriptionLog'));
- $table->set_header(2, get_lang('AssessmentsPreviousWeight'));
- $table->set_header(3, get_lang('AssessmentsVisibilityLog'));
- $table->set_header(4, get_lang('Category'));
- $table->set_header(5, get_lang('Date'));
- $table->set_header(6, get_lang('AssessmentsWhoChangedItLog'));
- $table->display();
- Display :: display_footer();
|