'index.php', "name" => get_lang('PlatformAdmin')); $interbreadcrumb[] = array ("url" => 'user_list.php', "name" => get_lang('UserList')); if (!isset($_GET['user_id'])) { api_not_allowed(); } $user = api_get_user_info($_GET['user_id']); $tool_name = api_get_person_name($user['firstName'], $user['lastName']).(empty($user['official_code'])?'':' ('.$user['official_code'].')'); Display::display_header($tool_name); $table_course_user = Database :: get_main_table(TABLE_MAIN_COURSE_USER); $table_course = Database :: get_main_table(TABLE_MAIN_COURSE); if ( isset($_GET['action']) ) { switch($_GET['action']) { case 'unsubscribe': if ( CourseManager::get_user_in_course_status($_GET['user_id'],$_GET['course_code']) == STUDENT) { CourseManager::unsubscribe_user($_GET['user_id'],$_GET['course_code']); Display::display_normal_message(get_lang('UserUnsubscribed')); } else { Display::display_error_message(get_lang('CannotUnsubscribeUserFromCourse')); } break; } } //only allow platform admins to login_as, or session admins only for students (not teachers nor other admins) $statusname = api_get_status_langvars(); $login_as_icon = ''; if (api_is_platform_admin() || (api_is_session_admin() && $row['6'] == $statusname[STUDENT])) { $login_as_icon = ''.Display::return_icon('login_as.gif', get_lang('LoginAs')).''; } echo '
'. ($user['status'] == 1 ? get_lang('Teacher') : get_lang('Student')).'
'; echo ''.Display :: encrypted_mailto_link($user['mail'], $user['mail']).'
'; /** * Show the sessions and the courses in wich this user is subscribed */ echo ''.get_lang('NoSessionsForThisUser').'
'; } /** * Show the courses in which this user is subscribed */ $sql = 'SELECT * FROM '.$table_course_user.' cu, '.$table_course.' c'. ' WHERE cu.user_id = '.$user['user_id'].' AND cu.course_code = c.code '. ' AND cu.relation_type <> '.COURSE_RELATION_TYPE_RRHH.' '; $res = Database::query($sql); if (Database::num_rows($res) > 0) { $header=array(); $header[] = array (get_lang('Code'), true); $header[] = array (get_lang('Title'), true); $header[] = array (get_lang('Status'), true); $header[] = array ('', false); $data = array (); while ($course = Database::fetch_object($res)) { $row = array (); $row[] = $course->code; $row[] = $course->title; $row[] = $course->status == STUDENT ? get_lang('Student') : get_lang('Teacher'); $tools = ''.Display::return_icon('synthese_view.gif', get_lang('Overview')).''. ''.Display::return_icon('course_home.gif', get_lang('CourseHomepage')).'' . ''.Display::return_icon('edit.gif', get_lang('Edit')).''; if ( $course->status == STUDENT ) { $tools .= ''.Display::return_icon('delete.gif', get_lang('Delete')).''; } $row[] = $tools; $data[] = $row; } echo ''.get_lang('NoCoursesForThisUser').'
'; } /** * Show the classes in which this user is subscribed */ $table_class_user = Database :: get_main_table(TABLE_MAIN_CLASS_USER); $table_class = Database :: get_main_table(TABLE_MAIN_CLASS); $sql = 'SELECT * FROM '.$table_class_user.' cu, '.$table_class.' c '. ' WHERE cu.user_id = '.$user['user_id'].' AND cu.class_id = c.id'; $res = Database::query($sql); if (Database::num_rows($res) > 0) { $header = array(); $header[] = array (get_lang('ClassName'), true); $header[] = array ('', false); $data = array (); while ($class = Database::fetch_object($res)) { $row = array(); $row[] = $class->name; $row[] = ''.Display::return_icon('synthese_view.gif', get_lang('Overview')).''; $data[] = $row; } echo ''.get_lang('Classes').'
'; echo ''; Display :: display_sortable_table($header, $data, array (), array (), array ('user_id' => intval($_GET['user_id']))); echo ''; } else { echo '
'.get_lang('NoClassesForThisUser').'
'; } /** * Show the URL in which this user is subscribed */ global $_configuration; if ($_configuration['multiple_access_urls']) { require_once(api_get_path(LIBRARY_PATH).'urlmanager.lib.php'); $url_list= UrlManager::get_access_url_from_user($user['user_id']); if (count($url_list) > 0) { $header = array(); $header[] = array ('URL', true); $data = array (); foreach ($url_list as $url) { $row = array(); $row[] = $url['url']; $data[] = $row; } echo ''.get_lang('URLList').'
'; Display :: display_sortable_table($header, $data, array (), array (), array ('user_id' => intval($_GET['user_id']))); } else { echo ''.get_lang('NoUrlForThisUser').'
'; } } /* FOOTER */ Display::display_footer();