123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * This script gives information about a course.
- *
- * @author Bart Mollet
- *
- * @package chamilo.admin
- */
- $cidReset = true;
- require_once __DIR__.'/../inc/global.inc.php';
- $this_section = SECTION_PLATFORM_ADMIN;
- api_protect_admin_script();
- if (!isset($_GET['code'])) {
- api_not_allowed(true);
- }
- $courseInfo = api_get_course_info($_GET['code']);
- if (empty($courseInfo)) {
- api_not_allowed(true);
- }
- $sessionId = isset($_GET['id_session']) ? (int) $_GET['id_session'] : 0;
- /**
- * @param array $course
- * @param int $session_id
- *
- * @return array
- */
- function get_course_usage($course, $session_id = 0)
- {
- $courseId = $course['real_id'];
- $tables = [
- [
- Database::get_course_table(TABLE_LP_MAIN),
- get_lang(ucfirst(TOOL_LEARNPATH)),
- ],
- [
- Database::get_course_table(TABLE_FORUM),
- get_lang('Forums'),
- ],
- [
- Database::get_course_table(TABLE_QUIZ_TEST),
- get_lang(ucfirst(TOOL_QUIZ)),
- ],
- [
- Database::get_course_table(TABLE_DOCUMENT),
- get_lang(ucfirst(TOOL_DOCUMENT)),
- ],
- [
- Database::get_course_table(TABLE_GROUP),
- get_lang(ucfirst(TOOL_GROUP)),
- ],
- [
- Database::get_course_table(TABLE_AGENDA),
- get_lang('Calendar'),
- ],
- [
- Database::get_course_table(TABLE_LINK),
- get_lang(ucfirst(TOOL_LINK)),
- ],
- [
- Database::get_course_table(TABLE_ANNOUNCEMENT),
- get_lang(ucfirst(TOOL_ANNOUNCEMENT)),
- ],
- ];
- $usage = [];
- $conditionSession = '';
- if ($session_id !== '') {
- $session_id = intval($session_id);
- $conditionSession = " AND session_id = '$session_id' ";
- }
- foreach ($tables as $tableInfo) {
- $table = $tableInfo[0];
- $title = $tableInfo[1];
- $sql = "SELECT COUNT(*) count FROM $table
- WHERE c_id = '$courseId' $conditionSession ";
- $rs = Database::query($sql);
- $row = Database::fetch_array($rs);
- $usage[] = [
- $title,
- $row['count'],
- ];
- }
- return $usage;
- }
- $interbreadcrumb[] = ["url" => 'index.php', "name" => get_lang('Administration')];
- $interbreadcrumb[] = ["url" => 'course_list.php', "name" => get_lang('Courses')];
- $courseId = $courseInfo['real_id'];
- $tool_name = $courseInfo['title'].' ('.$courseInfo['visual_code'].')';
- Display::display_header($tool_name);
- ?>
- <div class="actions">
- <a href="<?php echo $courseInfo['course_public_url']; ?>">
- <?php Display::display_icon('home.png', get_lang('Course home'), [], ICON_SIZE_MEDIUM); ?>
- </a>
- </div>
- <?php
- echo Display::page_header(get_lang('Course usage'));
- $table = new SortableTableFromArray(
- get_course_usage($courseInfo, $sessionId),
- 0,
- 20,
- 'usage_table'
- );
- $table->set_additional_parameters(['code' => $courseInfo['code']]);
- $table->set_other_tables(['user_table', 'class_table']);
- $table->set_header(0, get_lang('tool'), true);
- $table->set_header(1, get_lang('number of items'), true);
- $table->display();
- /**
- * Show all users subscribed in this course.
- */
- echo Display::page_header(get_lang('Users'));
- $table_course_user = Database::get_main_table(TABLE_MAIN_COURSE_USER);
- $table_user = Database::get_main_table(TABLE_MAIN_USER);
- $sql = "SELECT *, cu.status as course_status
- FROM $table_course_user cu, $table_user u";
- if (api_is_multiple_url_enabled()) {
- $sql .= " INNER JOIN ".Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER)." url_rel_user
- ON
- u.user_id = url_rel_user.user_id AND
- url_rel_user.access_url_id = ".api_get_current_access_url_id();
- }
- $sql .= " WHERE
- cu.user_id = u.user_id AND
- cu.c_id = '".$courseId."' AND
- cu.relation_type <> ".COURSE_RELATION_TYPE_RRHH;
- $res = Database::query($sql);
- $is_western_name_order = api_is_western_name_order();
- if (Database::num_rows($res) > 0) {
- $users = [];
- while ($obj = Database::fetch_object($res)) {
- $user = [];
- $user[] = $obj->official_code;
- if ($is_western_name_order) {
- $user[] = $obj->firstname;
- $user[] = $obj->lastname;
- } else {
- $user[] = $obj->lastname;
- $user[] = $obj->firstname;
- }
- $user[] = Display:: encrypted_mailto_link($obj->email, $obj->email);
- $user[] = $obj->course_status == 5 ? get_lang('Learner') : get_lang('Trainer');
- $user[] = '<a href="user_information.php?user_id='.$obj->user_id.'">'.
- Display::return_icon('info2.png', get_lang('user information')).'</a>';
- $users[] = $user;
- }
- $table = new SortableTableFromArray($users, 0, 20, 'user_table');
- $table->set_additional_parameters(['code' => $courseInfo['code']]);
- $table->set_other_tables(['usage_table', 'class_table']);
- $table->set_header(0, get_lang('Code'), true);
- if ($is_western_name_order) {
- $table->set_header(1, get_lang('First name'), true);
- $table->set_header(2, get_lang('Last name'), true);
- } else {
- $table->set_header(1, get_lang('Last name'), true);
- $table->set_header(2, get_lang('First name'), true);
- }
- $table->set_header(3, get_lang('e-mail'), true);
- $table->set_header(4, get_lang('Status'), true);
- $table->set_header(5, '', false);
- $table->display();
- } else {
- echo get_lang('No users in course');
- }
- $sessionList = SessionManager::get_session_by_course($courseInfo['real_id']);
- $url = api_get_path(WEB_CODE_PATH);
- if (!empty($sessionList)) {
- foreach ($sessionList as &$session) {
- $session[0] = Display::url($session[0], $url.'session/resume_session.php?id_session='.$session['id']);
- unset($session[1]);
- }
- echo Display::page_header(get_lang('Course sessions'));
- $table = new SortableTableFromArray($sessionList, 0, 20, 'user_table');
- $table->display();
- }
- Display::display_footer();
|