123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * This script displays a list of the users of the current course.
- * Course admins can change user permissions, subscribe and unsubscribe users...
- *
- * EXPERIMENTAL: support for virtual courses
- * - show users registered in virtual and real courses;
- * - only show the users of a virtual course if the current user;
- * is registered in that virtual course.
- *
- * Exceptions: platform admin and the course admin will see all virtual courses.
- * This is a new feature, there may be bugs.
- *
- * @todo possibility to edit user-course rights and view statistics for users in virtual courses
- * @todo convert normal table display to display function (refactor virtual course display function)
- * @todo display table functions need support for align and valign (e.g. to center text in cells) (this is now possible)
- * @author Roan Embrechts, refactoring + virtual courses support
- * @author Julio Montoya Armas, Several fixes
- * @package chamilo.user
- */
- /**
- * Code
- */
- // name of the language file that needs to be included
- $language_file = array('registration', 'admin', 'userInfo', 'registration');
- $use_anonymous = true;
- require_once '../inc/global.inc.php';
- $current_course_tool = TOOL_USER;
- $this_section = SECTION_COURSES;
- // notice for unauthorized people.
- api_protect_course_script(true);
- /* Libraries */
- require_once api_get_path(LIBRARY_PATH).'export.lib.inc.php';
- global $_configuration;
- if (!api_is_platform_admin(true)) {
- if (!api_is_course_admin() && !api_is_coach()) {
- if (api_get_course_setting('allow_user_view_user_list') == 0) {
- api_not_allowed(true);
- }
- }
- }
- /* Constants and variables */
- $course_code = Database::escape_string(api_get_course_id());
- $session_id = api_get_session_id();
- $is_western_name_order = api_is_western_name_order();
- $sort_by_first_name = api_sort_by_first_name();
- $course_info = api_get_course_info();
- $user_id = api_get_user_id();
- $courseCode = api_get_course_id();
- //Can't auto unregister from a session
- if (!empty($session_id)) {
- $course_info['unsubscribe'] = 0;
- }
- /* Unregistering a user section */
- if (api_is_allowed_to_edit(null, true)) {
- if (isset($_POST['action'])) {
- switch ($_POST['action']) {
- case 'unsubscribe':
- // Make sure we don't unsubscribe current user from the course
- if (is_array($_POST['user'])) {
- $user_ids = array_diff($_POST['user'], array($user_id));
- if (count($user_ids) > 0) {
- CourseManager::unsubscribe_user($user_ids, $courseCode);
- $message = get_lang('UsersUnsubscribed');
- }
- }
- }
- }
- }
- // Getting extra fields that have the filter option "on"
- $extraField = new ExtraField('user');
- $extraFields = $extraField->get_all(array('field_filter' => 1));
- $user_image_pdf_size = 80;
- if (api_is_allowed_to_edit(null, true)) {
- if (isset($_GET['action'])) {
- switch ($_GET['action']) {
- case 'export':
- $table_course_user = Database::get_main_table(TABLE_MAIN_COURSE_USER);
- $table_users = Database::get_main_table(TABLE_MAIN_USER);
- $is_western_name_order = api_is_western_name_order();
- $data = array();
- $a_users = array();
- $current_access_url_id = api_get_current_access_url_id();
- $extra_fields = UserManager::get_extra_user_data(
- api_get_user_id(),
- false,
- false,
- false,
- true
- );
- $extra_fields = array_keys($extra_fields);
- $select_email_condition = '';
- if (api_get_setting('show_email_addresses') == 'true') {
- $select_email_condition = ' user.email, ';
- if ($sort_by_first_name) {
- $a_users[0] = array(
- 'id',
- get_lang('FirstName'),
- get_lang('LastName'),
- get_lang('Username'),
- get_lang('Email'),
- get_lang('Phone'),
- get_lang('OfficialCode'),
- get_lang('Active')
- );
- } else {
- $a_users[0] = array(
- 'id',
- get_lang('LastName'),
- get_lang('FirstName'),
- get_lang('Username'),
- get_lang('Email'),
- get_lang('Phone'),
- get_lang('OfficialCode'),
- get_lang('Active')
- );
- }
- } else {
- if ($sort_by_first_name) {
- $a_users[0] = array(
- 'id',
- get_lang('FirstName'),
- get_lang('LastName'),
- get_lang('Username'),
- get_lang('Phone'),
- get_lang('OfficialCode'),
- get_lang('Active')
- );
- } else {
- $a_users[0] = array(
- 'id',
- get_lang('LastName'),
- get_lang('FirstName'),
- get_lang('Username'),
- get_lang('Phone'),
- get_lang('OfficialCode'),
- get_lang('Active')
- );
- }
- }
- $legal = '';
- if (isset($course_info['activate_legal']) AND $course_info['activate_legal'] == 1) {
- $legal = ', legal_agreement';
- $a_users[0][] = get_lang('LegalAgreementAccepted');
- }
- if ($_GET['type'] == 'pdf') {
- $select_email_condition = ' user.email, ';
- if ($is_western_name_order) {
- $a_users[0] = array(
- '#',
- get_lang('UserPicture'),
- get_lang('OfficialCode'),
- get_lang('FirstName') . ', ' . get_lang('LastName'),
- get_lang('Email'),
- get_lang('Phone')
- );
- } else {
- $a_users[0] = array(
- '#',
- get_lang('UserPicture'),
- get_lang('OfficialCode'),
- get_lang('LastName') . ', ' . get_lang('FirstName'),
- get_lang('Email'),
- get_lang('Phone')
- );
- }
- }
- $a_users[0] = array_merge($a_users[0], $extra_fields);
- // users subscribed to the course through a session.
- if (api_get_session_id()) {
- $table_session_course_user = Database::get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $sql_query = "SELECT DISTINCT
- user.user_id, ".($is_western_name_order ? "user.firstname, user.lastname" : "user.lastname, user.firstname").",
- user.username,
- $select_email_condition
- phone,
- user.official_code,
- active
- $legal
- FROM $table_session_course_user as session_course_user, $table_users as user ";
- if (api_is_multiple_url_enabled()) {
- $sql_query .= ' , '.Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER).' au ';
- }
- $sql_query .=" WHERE course_code = '$course_code' AND session_course_user.id_user = user.user_id ";
- $sql_query .= ' AND id_session = '.$session_id;
- if (api_is_multiple_url_enabled()) {
- $sql_query .= " AND user.user_id = au.user_id AND access_url_id = $current_access_url_id ";
- }
- //only users no coaches/teachers
- $sql_query .= " AND session_course_user.status = 0 ";
- $sql_query .= $sort_by_first_name ? ' ORDER BY user.firstname, user.lastname' : ' ORDER BY user.lastname, user.firstname';
- $rs = Database::query($sql_query);
- $counter = 1;
- while ($user = Database:: fetch_array($rs, 'ASSOC')) {
- if (isset($user['legal_agreement'])) {
- if ($user['legal_agreement'] == 1) {
- $user['legal_agreement'] = get_lang('Yes');
- } else {
- $user['legal_agreement'] = get_lang('No');
- }
- }
- $extra_fields = UserManager::get_extra_user_data(
- $user['user_id'],
- false,
- false,
- false,
- true
- );
- if (!empty($extra_fields)) {
- foreach($extra_fields as $key => $extra_value) {
- $user[$key] = $extra_value;
- }
- }
- $data[] = $user;
- if ($_GET['type'] == 'pdf') {
- $user_info = api_get_user_info($user['user_id']);
- $user_image = Display::img($user_info['avatar'], null, array('width' => $user_image_pdf_size.'px'));
- if ($is_western_name_order) {
- $user_pdf = array(
- $counter,
- $user_image,
- $user['official_code'],
- $user['firstname'] . ', ' . $user['lastname'],
- $user['email'],
- $user['phone']
- );
- } else {
- $user_pdf = array(
- $counter,
- $user_image,
- $user['official_code'],
- $user['lastname'] . ', ' . $user['firstname'],
- $user['email'],
- $user['phone']
- );
- }
- $a_users[] = $user_pdf;
- } else {
- $a_users[] = $user;
- }
- $counter++;
- }
- }
- if ($session_id == 0) {
- // users directly subscribed to the course
- $table_course_user = Database :: get_main_table(TABLE_MAIN_COURSE_USER);
- $sql_query = "SELECT DISTINCT
- user.user_id, ".($is_western_name_order ? "user.firstname, user.lastname" : "user.lastname, user.firstname").",
- user.username,
- $select_email_condition
- phone,
- user.official_code,
- active $legal
- FROM $table_course_user as course_user, $table_users as user ";
- if (api_is_multiple_url_enabled()) {
- $sql_query .= ' , '.Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER).' au ';
- }
- $sql_query .= " WHERE
- course_code = '$course_code' AND
- course_user.relation_type<>".COURSE_RELATION_TYPE_RRHH." AND
- course_user.user_id = user.user_id ";
- if (api_is_multiple_url_enabled()) {
- $sql_query .= " AND user.user_id = au.user_id AND access_url_id = $current_access_url_id ";
- }
- //only users no teachers/coaches
- $sql_query .= " AND course_user.status = 5 ";
- $sql_query .= ($sort_by_first_name ? " ORDER BY user.firstname, user.lastname" : " ORDER BY user.lastname, user.firstname");
- $rs = Database::query($sql_query);
- $counter = 1;
- while ($user = Database::fetch_array($rs, 'ASSOC')) {
- if (isset($user['legal_agreement'])) {
- if ($user['legal_agreement'] == 1) {
- $user['legal_agreement'] = get_lang('Yes');
- } else {
- $user['legal_agreement'] = get_lang('No');
- }
- }
- $extra_fields = UserManager::get_extra_user_data(
- $user['user_id'],
- false,
- false,
- false,
- true
- );
- if (!empty($extra_fields)) {
- foreach ($extra_fields as $key => $extra_value) {
- $user[$key] = $extra_value;
- }
- }
- if ($_GET['type'] == 'pdf') {
- $user_info = api_get_user_info($user['user_id']);
- $user_image = Display::img(
- $user_info['avatar'],
- null,
- array('width' => $user_image_pdf_size.'px')
- );
- if ($is_western_name_order) {
- $user_pdf = array(
- $counter,
- $user_image,
- $user['official_code'],
- $user['firstname'] . ', ' . $user['lastname'],
- $user['email'],
- $user['phone']
- );
- } else {
- $user_pdf = array(
- $counter,
- $user_image,
- $user['official_code'],
- $user['lastname'] . ', ' . $user['firstname'],
- $user['email'],
- $user['phone']
- );
- }
- $a_users[] = $user_pdf;
- } else {
- $a_users[] = $user;
- }
- $data[] = $user;
- $counter++;
- }
- }
- switch ($_GET['type']) {
- case 'csv' :
- Export::export_table_csv($a_users);
- exit;
- case 'xls' :
- Export::export_table_xls($a_users);
- exit;
- case 'pdf' :
- $header_attributes = array(
- array('style' => 'width:10px'),
- array('style' => 'width:30px'),
- array('style' => 'width:50px'),
- array('style' => 'width:500px'),
- );
- $params = array(
- 'add_signatures' => false,
- 'filename' => get_lang('UserList'),
- 'pdf_title' => get_lang('StudentList'),
- 'header_attributes' => $header_attributes
- );
- Export::export_table_pdf($a_users, $params);
- exit;
- }
- }
- }
- } // end if allowed to edit
- if (api_is_allowed_to_edit(null, true)) {
- // Unregister user from course
- if ($_REQUEST['unregister']) {
- if (isset($_GET['user_id']) && is_numeric($_GET['user_id']) &&
- ($_GET['user_id'] != $_user['user_id'] || api_is_platform_admin())
- ) {
- $user_id = intval($_GET['user_id']);
- $tbl_user = Database::get_main_table(TABLE_MAIN_USER);
- $tbl_session_rel_course = Database::get_main_table(TABLE_MAIN_SESSION_COURSE);
- $tbl_session_rel_user = Database::get_main_table(TABLE_MAIN_SESSION_USER);
- $sql = 'SELECT '.$tbl_user.'.user_id
- FROM '.$tbl_user.' user
- INNER JOIN '.$tbl_session_rel_user.' reluser
- ON user.user_id = reluser.id_user AND reluser.relation_type<>'.SESSION_RELATION_TYPE_RRHH.'
- INNER JOIN '.$tbl_session_rel_course.' rel_course
- ON rel_course.id_session = reluser.id_session
- WHERE user.user_id = "'.$user_id.'"
- AND rel_course.course_code = "'.$course_code.'"';
- $result = Database::query($sql);
- $row = Database::fetch_array($result, 'ASSOC');
- if ($row['user_id'] == $user_id || $row['user_id'] == "") {
- CourseManager::unsubscribe_user($_GET['user_id'], $_SESSION['_course']['sysCode']);
- $message = get_lang('UserUnsubscribed');
- } else {
- $message = get_lang('ThisStudentIsSubscribeThroughASession');
- }
- }
- }
- } else {
- // If student can unsubscribe
- if (isset($_REQUEST['unregister']) && $_REQUEST['unregister'] == 'yes') {
- if ($course_info['unsubscribe'] == 1) {
- $user_id = api_get_user_id();
- CourseManager::unsubscribe_user($user_id, $course_info['code']);
- header('Location: '.api_get_path(WEB_PATH).'user_portal.php');
- exit;
- }
- }
- }
- /**
- * Display search form
- */
- function display_user_search_form()
- {
- echo '<form method="get" action="user.php">';
- echo get_lang("SearchForUser") . " ";
- echo '<input type="text" name="keyword" value="'.Security::remove_XSS($_GET['keyword']).'"/>';
- echo '<input type="submit" value="'.get_lang('SearchButton').'"/>';
- echo '</form>';
- }
- if (!$is_allowed_in_course) {
- api_not_allowed(true);
- }
- /* Header */
- if ($origin != 'learnpath') {
- if (isset($_GET['keyword']) && !empty($_GET['keyword'])) {
- $interbreadcrumb[] = array ("url" => "user.php", "name" => get_lang("Users"));
- $tool_name = get_lang('SearchResults');
- } else {
- $tool_name = get_lang('Users');
- $origin = 'users';
- }
- Display::display_header($tool_name, "User");
- } else {
- Display::display_reduced_header();
- }
- // Statistics
- event_access_tool(TOOL_USER);
- /* Setting the permissions for this page */
- $is_allowed_to_track = ($is_courseAdmin || $is_courseTutor);
- // Tool introduction
- Display::display_introduction_section(TOOL_USER, 'left');
- $actions = '';
- if (api_is_allowed_to_edit(null, true)) {
- echo '<div class="actions">';
- // the action links
- if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'true' or
- api_is_platform_admin()
- ) {
- $actions .= '<a href="subscribe_user.php?'.api_get_cidreq().'">'.
- Display::return_icon('user_subscribe_course.png',get_lang("SubscribeUserToCourse"),'',ICON_SIZE_MEDIUM).'</a> ';
- $actions .= "<a href=\"subscribe_user.php?".api_get_cidreq()."&type=teacher\">".
- Display::return_icon('teacher_subscribe_course.png', get_lang("SubscribeUserToCourseAsTeacher"),'',ICON_SIZE_MEDIUM)."</a> ";
- }
- $actions .= '<a href="user.php?'.api_get_cidreq().'&action=export&type=csv">'.
- Display::return_icon('export_csv.png', get_lang('ExportAsCSV'),'',ICON_SIZE_MEDIUM).'</a> ';
- $actions .= '<a href="user.php?'.api_get_cidreq().'&action=export&type=xls">'.
- Display::return_icon('export_excel.png', get_lang('ExportAsXLS'),'',ICON_SIZE_MEDIUM).'</a> ';
- if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'true' or
- api_is_platform_admin()
- ) {
- $actions .= '<a href="user_import.php?'.api_get_cidreq().'&action=import">'.
- Display::return_icon('import_csv.png', get_lang('ImportUsersToACourse'),'',ICON_SIZE_MEDIUM).'</a> ';
- }
- $actions .= '<a href="user.php?'.api_get_cidreq().'&action=export&type=pdf">'.
- Display::return_icon('pdf.png', get_lang('ExportToPDF'),'',ICON_SIZE_MEDIUM).'</a> ';
- $actions .= "<a href=\"../group/group.php?".api_get_cidreq()."\">".
- Display::return_icon('group.png', get_lang("GroupUserManagement"),'',ICON_SIZE_MEDIUM)."</a>";
- if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'true' or
- api_is_platform_admin()
- ) {
- $actions .= ' <a class="btn" href="class.php?'.api_get_cidreq().'">'.get_lang('Classes').'</a>';
- }
- if (api_is_allowed_to_edit() && $_configuration['allow_tutors_to_assign_students_to_session'] == 'true') {
- $actions .= ' <a class="btn" href="session_list.php?'.api_get_cidreq().'">'.get_lang('Sessions').'</a>';
- }
- // Build search-form
- $form = new FormValidator('search_user', 'get', '', '', null, false);
- $renderer = $form->defaultRenderer();
- $renderer->setElementTemplate('<span>{element}</span> ');
- $form->add_textfield('keyword', '', false);
- $form->addElement('style_submit_button', 'submit', get_lang('SearchButton'), 'class="search"');
- $form->addElement('static', 'additionalactions', null, $actions);
- $form->display();
- echo '</div>';
- }
- if (isset($message)) {
- Display::display_confirmation_message($message);
- }
- /**
- * Get the users to display on the current page.
- */
- function get_number_of_users()
- {
- $counter = 0;
- $sessionId = api_get_session_id();
- $courseCode = api_get_course_id();
- $active = isset($_GET['active']) ? $_GET['active'] : null;
- if (!empty($sessionId)) {
- $a_course_users = CourseManager::get_user_list_from_course_code(
- $courseCode,
- $sessionId,
- null,
- null,
- null,
- null,
- false,
- false,
- null,
- null,
- null,
- $active
- );
- } else {
- $a_course_users = CourseManager::get_user_list_from_course_code(
- $courseCode,
- 0,
- null,
- null,
- null,
- null,
- false,
- false,
- null,
- null,
- null,
- $active
- );
- }
- foreach ($a_course_users as $o_course_user) {
- if ((isset($_GET['keyword']) &&
- searchUserKeyword(
- $o_course_user['firstname'],
- $o_course_user['lastname'],
- $o_course_user['username'],
- $o_course_user['official_code'],
- $_GET['keyword']
- )
- ) || !isset($_GET['keyword']) || empty($_GET['keyword'])
- ) {
- $counter++;
- }
- }
- return $counter;
- }
- /**
- * @param string $firstname
- * @param string $lastname
- * @param string $username
- * @param string $official_code
- * @param $keyword
- * @return bool
- */
- function searchUserKeyword($firstname, $lastname, $username, $official_code, $keyword) {
- if (
- api_strripos($firstname, $keyword) !== false ||
- api_strripos($lastname, $keyword) !== false ||
- api_strripos($username, $keyword) !== false ||
- api_strripos($official_code, $keyword) !== false
- ) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Get the users to display on the current page.
- */
- function get_user_data($from, $number_of_items, $column, $direction)
- {
- global $origin;
- global $course_info;
- global $is_western_name_order;
- global $session_id;
- global $extraFields;
- $a_users = array();
- // limit
- if (!isset($_GET['keyword']) || empty($_GET['keyword'])) {
- $limit = 'LIMIT '.intval($from).','.intval($number_of_items);
- }
- if (!in_array($direction, array('ASC', 'DESC'))) {
- $direction = 'ASC';
- }
- switch ($column) {
- case 2: //official code
- $order_by = 'ORDER BY user.official_code '.$direction;
- break;
- case 3:
- if ($is_western_name_order) {
- $order_by = 'ORDER BY user.firstname '.$direction.', user.lastname '.$direction;
- } else {
- $order_by = 'ORDER BY user.lastname '.$direction.', user.firstname '.$direction;
- }
- break;
- case 4:
- if ($is_western_name_order) {
- $order_by = 'ORDER BY user.lastname '.$direction.', user.firstname '.$direction;
- } else {
- $order_by = 'ORDER BY user.firstname '.$direction.', user.lastname '.$direction;
- }
- break;
- case 5: //username
- $order_by = 'ORDER BY user.username '.$direction;
- break;
- default:
- if ($is_western_name_order) {
- $order_by = 'ORDER BY user.lastname '.$direction.', user.firstname '.$direction;
- } else {
- $order_by = 'ORDER BY user.firstname '.$direction.', user.lastname '.$direction;
- }
- break;
- }
- $session_id = api_get_session_id();
- $course_code = api_get_course_id();
- $active = isset($_GET['active']) ? $_GET['active'] : null;
- $a_course_users = CourseManager :: get_user_list_from_course_code(
- $course_code,
- $session_id,
- $limit,
- $order_by,
- null,
- null,
- false,
- false,
- null,
- array(),
- array(),
- $active
- );
- foreach ($a_course_users as $user_id => $o_course_user) {
- if ((
- isset($_GET['keyword']) &&
- searchUserKeyword(
- $o_course_user['firstname'],
- $o_course_user['lastname'],
- $o_course_user['username'],
- $o_course_user['official_code'],
- $_GET['keyword'])
- ) || !isset($_GET['keyword']) || empty($_GET['keyword'])
- ) {
- $groupsNameList = GroupManager::getAllGroupPerUserSubscription($user_id);
- $temp = array();
- if (api_is_allowed_to_edit(null, true)) {
- $temp[] = $user_id;
- $image_path = UserManager::get_user_picture_path_by_id(
- $user_id,
- 'web',
- false,
- true
- );
- $user_profile = UserManager::get_picture_user(
- $user_id,
- $image_path['file'],
- 22,
- USER_IMAGE_SIZE_SMALL,
- ' width="22" height="22" '
- );
- if (!api_is_anonymous()) {
- $photo = '<a href="userInfo.php?'.api_get_cidreq().'&origin='.$origin.'&uInfo='.$user_id.'" title="'.get_lang('Info').'" ><img src="'.$user_profile['file'].'" '.$user_profile['style'].' alt="'.api_get_person_name($o_course_user['firstname'], $o_course_user['lastname']).'" title="'.api_get_person_name($o_course_user['firstname'], $o_course_user['lastname']).'" /></a>';
- } else {
- $photo = '<img src="'.$user_profile['file'].'" '.$user_profile['style'].' alt="'.api_get_person_name($o_course_user['firstname'], $o_course_user['lastname']).'" title="'.api_get_person_name($o_course_user['firstname'], $o_course_user['lastname']).'" />';
- }
- $temp[] = $photo;
- $temp[] = $o_course_user['official_code'];
- if ($is_western_name_order) {
- $temp[] = $o_course_user['firstname'];
- $temp[] = $o_course_user['lastname'];
- } else {
- $temp[] = $o_course_user['lastname'];
- $temp[] = $o_course_user['firstname'];
- }
- $temp[] = $o_course_user['username'];
- // Description.
- $temp[] = isset($o_course_user['role']) ? $o_course_user['role'] : null;
- // Groups.
- $temp[] = implode(', ', $groupsNameList);
- // Status
- $default_status = '-';
- if ((isset($o_course_user['status_rel']) && $o_course_user['status_rel'] == 1) ||
- (isset($o_course_user['status_session']) && $o_course_user['status_session'] == 2)
- ) {
- $default_status = get_lang('CourseManager');
- } elseif (isset($o_course_user['tutor_id']) && $o_course_user['tutor_id'] == 1) {
- $default_status = get_lang('Tutor');
- }
- $temp[] = $default_status;
- // Active
- $temp[] = $o_course_user['active'];
- if (!empty($extraFields)) {
- foreach ($extraFields as $extraField) {
- $extraFieldValue = new ExtraFieldValue('user');
- $data = $extraFieldValue->get_values_by_handler_and_field_id(
- $user_id,
- $extraField['id']
- );
- $temp[] = $data['field_value'];
- }
- }
- // User id for actions
- $temp[] = $user_id;
- } else {
- $image_path = UserManager::get_user_picture_path_by_id($user_id, 'web', false, true);
- $image_repository = $image_path['dir'];
- $existing_image = $image_path['file'];
- if (!api_is_anonymous()) {
- $photo= '<a href="userInfo.php?'.api_get_cidreq().'&origin='.$origin.'&uInfo='.$user_id.'" title="'.get_lang('Info').'" ><img src="'.$image_repository.$existing_image.'" alt="'.api_get_person_name($o_course_user['firstname'], $o_course_user['lastname']).'" width="22" height="22" title="'.api_get_person_name($o_course_user['firstname'], $o_course_user['lastname']).'" /></a>';
- } else {
- $photo= '<img src="'.$image_repository.$existing_image.'" alt="'.api_get_person_name($o_course_user['firstname'], $o_course_user['lastname']).'" width="22" height="22" title="'.api_get_person_name($o_course_user['firstname'], $o_course_user['lastname']).'" />';
- }
- $temp[] = $user_id;
- $temp[] = $photo;
- $temp[] = $o_course_user['official_code'];
- if ($is_western_name_order) {
- $temp[] = $o_course_user['firstname'];
- $temp[] = $o_course_user['lastname'];
- } else {
- $temp[] = $o_course_user['lastname'];
- $temp[] = $o_course_user['firstname'];
- }
- $temp[] = $o_course_user['username'];
- $temp[] = $o_course_user['role'];
- // Group.
- $temp[] = implode(', ', $groupsNameList);
- if ($course_info['unsubscribe'] == 1) {
- //User id for actions
- $temp[] = $user_id;
- }
- }
- $a_users[$user_id] = $temp;
- }
- }
- return $a_users;
- }
- /**
- * Build the active-column of the table to lock or unlock a certain user
- * lock = the user can no longer use this account
- * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
- * @param int $active the current state of the account
- * @param int $user_id The user id
- * @param string $url_params
- * @return string Some HTML-code with the lock/unlock button
- */
- function active_filter($active, $url_params, $row)
- {
- $userId = api_get_user_id();
- if ($active=='1') {
- $action='AccountActive';
- $image='accept';
- }
- if ($active=='0') {
- $action='AccountInactive';
- $image='error';
- }
- $result = '';
- /* you cannot lock yourself out otherwise you could disable all the accounts including your own => everybody is
- locked out and nobody can change it anymore.*/
- if ($row[count($row)-1] <> $userId) {
- $result = '<center><img src="../img/icons/16/'.$image.'.png" border="0" style="vertical-align: middle;" alt="'.get_lang(ucfirst($action)).'" title="'.get_lang(ucfirst($action)).'"/></center>';
- }
- return $result;
- }
- /**
- * Build the modify-column of the table
- * @param int $user_id The user id
- * @return string Some HTML-code
- */
- function modify_filter($user_id)
- {
- global $origin, $_course, $is_allowed_to_track, $charset, $course_info;
- $current_user_id = api_get_user_id();
- $result = "";
- if ($is_allowed_to_track) {
- $result .= '<a href="../mySpace/myStudents.php?'.api_get_cidreq().'&student='.$user_id.'&details=true&course='.$_course['id'].'&origin=user_course&id_session='.api_get_session_id().'" title="'.get_lang('Tracking').'" >
- <img border="0" alt="'.get_lang('Tracking').'" src="../img/icons/22/stats.png" />
- </a>';
- }
- // If platform admin, show the login_as icon (this drastically shortens
- // time taken by support to test things out)
- if (api_is_platform_admin()) {
- $result .= ' <a href="'.api_get_path(WEB_CODE_PATH).'admin/user_list.php?action=login_as&user_id='.$user_id.'&sec_token='.$_SESSION['sec_token'].'">'.
- Display::return_icon('login_as.gif', get_lang('LoginAs')).'</a> ';
- }
- if (api_is_allowed_to_edit(null, true)) {
- // edit
- $result .= '<a href="userInfo.php?'.api_get_cidreq().'&origin='.$origin.'&editMainUserInfo='.$user_id.'" title="'.get_lang('Edit').'" >'.
- Display::return_icon('edit.png', get_lang('Edit'),'',ICON_SIZE_SMALL).'</a> ';
- if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'true' or api_is_platform_admin()) {
- // unregister
- if ($user_id != $current_user_id || api_is_platform_admin()) {
- $result .= '<a class="btn btn-small btn-danger" href="'.api_get_self().'?'.api_get_cidreq().'&unregister=yes&user_id='.$user_id.'" title="'.get_lang('Unreg').' " onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang('ConfirmYourChoice'),ENT_QUOTES,$charset)).'\')) return false;">'.get_lang('Unreg').'</a> ';
- } else {
- //$result .= Display::return_icon('unsubscribe_course_na.png', get_lang('Unreg'),'',ICON_SIZE_SMALL).'</a> ';
- }
- }
- } else {
- // Show buttons for unsubscribe
- if ($course_info['unsubscribe'] == 1) {
- if ($user_id == $current_user_id) {
- $result .= '<a class="btn btn-small btn-danger" href="'.api_get_self().'?'.api_get_cidreq().'&unregister=yes&user_id='.$user_id.'" title="'.get_lang('Unreg').' " onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang('ConfirmYourChoice'),ENT_QUOTES,$charset)).'\')) return false;">'.get_lang('Unreg').'</a> ';
- }
- }
- }
- return $result;
- }
- function hide_field()
- {
- return null;
- }
- $default_column = 3;
- $table = new SortableTable('user_list', 'get_number_of_users', 'get_user_data', $default_column);
- $parameters['keyword'] = isset($_GET['keyword']) ? Security::remove_XSS($_GET['keyword']) : null;
- $parameters['sec_token'] = Security::get_token();
- $table->set_additional_parameters($parameters);
- $header_nr = 0;
- $indexList = array();
- $table->set_header($header_nr++, '', false);
- $indexList['photo'] = $header_nr;
- $table->set_header($header_nr++, get_lang('Photo'), false);
- $table->set_header($header_nr++, get_lang('OfficialCode'));
- $indexList['official_code'] = $header_nr;
- if ($is_western_name_order) {
- $indexList['firstname'] = $header_nr;
- $table->set_header($header_nr++, get_lang('FirstName'));
- $indexList['lastname'] = $header_nr;
- $table->set_header($header_nr++, get_lang('LastName'));
- } else {
- $indexList['lastname'] = $header_nr;
- $table->set_header($header_nr++, get_lang('LastName'));
- $indexList['firstname'] = $header_nr;
- $table->set_header($header_nr++, get_lang('FirstName'));
- }
- $indexList['username'] = $header_nr;
- $table->set_header($header_nr++, get_lang('LoginName'));
- $indexList['description'] = $header_nr;
- $table->set_header($header_nr++, get_lang('Description'), false);
- $indexList['groups'] = $header_nr;
- $table->set_header($header_nr++, get_lang('GroupSingle'), false);
- if (api_is_allowed_to_edit(null, true) && api_get_setting('allow_user_course_subscription_by_course_admin') == 'true') {
- } else {
- $table->set_column_filter(0, 'hide_field');
- }
- $hideFields = api_get_configuration_value('hide_user_field_from_list');
- if (!empty($hideFields)) {
- foreach ($hideFields as $fieldToHide) {
- if (isset($indexList[$fieldToHide])) {
- $table->setHideColumn($indexList[$fieldToHide]);
- }
- }
- }
- if (api_is_allowed_to_edit(null, true)) {
- $table->set_header($header_nr++, get_lang('Status'), false);
- $table->set_header($header_nr++, get_lang('Active'), false);
- if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'true') {
- $table->set_column_filter(9, 'active_filter');
- } else {
- $table->set_column_filter(9, 'active_filter');
- }
- foreach ($extraFields as $extraField) {
- $table->set_header($header_nr++, $extraField['field_display_text'], false);
- }
- // Actions column
- $table->set_header($header_nr++, get_lang('Action'), false);
- $table->set_column_filter($header_nr-1, 'modify_filter');
- if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'true') {
- $table->set_form_actions(array('unsubscribe' => get_lang('Unreg')), 'user');
- }
- } else {
- if ($course_info['unsubscribe'] == 1) {
- $table->set_header($header_nr++, get_lang('Action'), false);
- $table->set_column_filter($header_nr-1, 'modify_filter');
- }
- }
- $table->display();
- if (!empty($_GET['keyword']) && !empty($_GET['submit'])) {
- $keyword_name = Security::remove_XSS($_GET['keyword']);
- echo '<br/>'.get_lang('SearchResultsFor').' <span style="font-style: italic ;"> '.$keyword_name.' </span><br>';
- }
- if (api_get_setting('allow_user_headings') == 'true' &&
- $is_courseAdmin &&
- api_is_allowed_to_edit() && $origin != 'learnpath'
- ) {
- // only course administrators see this line
- echo "<div align=\"right\">", "<form method=\"post\" action=\"userInfo.php\">", get_lang("CourseAdministratorOnly"), " : ", "<input type=\"submit\" class=\"save\" name=\"viewDefList\" value=\"".get_lang("DefineHeadings")."\" />", "</form>", "</div>\n";
- }
- if ($origin != 'learnpath') {
- Display::display_footer();
- }
|