123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * This script shows the group space for one specific group, possibly displaying
- * a list of users in the group, subscribe or unsubscribe option, tutors...
- *
- * @package chamilo.group
- *
- * @todo Display error message if no group ID specified
- */
- require_once __DIR__.'/../inc/global.inc.php';
- $current_course_tool = TOOL_GROUP;
- // Notice for unauthorized people.
- api_protect_course_script(true, false, 'group');
- require_once api_get_path(SYS_CODE_PATH).'forum/forumfunction.inc.php';
- $group_id = api_get_group_id();
- $user_id = api_get_user_id();
- $current_group = GroupManager::get_group_properties($group_id);
- $group_id = $current_group['iid'];
- if (empty($current_group)) {
- api_not_allowed(true);
- }
- $this_section = SECTION_COURSES;
- $nameTools = get_lang('Group area');
- $interbreadcrumb[] = [
- 'url' => 'group.php?'.api_get_cidreq(),
- 'name' => get_lang('Groups'),
- ];
- /* Ensure all private groups // Juan Carlos Raña Trabado */
- $forums_of_groups = get_forums_of_group($current_group);
- if (!GroupManager::userHasAccessToBrowse($user_id, $current_group, api_get_session_id())) {
- api_not_allowed(true);
- }
- /* Actions and Action links */
- /*
- * User wants to register in this group
- */
- if (!empty($_GET['selfReg']) &&
- GroupManager::is_self_registration_allowed($user_id, $current_group)
- ) {
- GroupManager::subscribe_users($user_id, $current_group);
- Display::addFlash(Display::return_message(get_lang('You are now a member of this group.')));
- }
- /*
- * User wants to unregister from this group
- */
- if (!empty($_GET['selfUnReg']) &&
- GroupManager::is_self_unregistration_allowed($user_id, $current_group)
- ) {
- GroupManager::unsubscribe_users($user_id, $current_group);
- Display::addFlash(
- Display::return_message(get_lang('You\'re now unsubscribed.'), 'normal')
- );
- }
- Display::display_header(
- $nameTools.' '.Security::remove_XSS($current_group['name']),
- 'Group'
- );
- /* Introduction section (editable by course admin) */
- Display::display_introduction_section(TOOL_GROUP);
- echo '<div class="actions">';
- echo '<a href="'.api_get_path(WEB_CODE_PATH).'group/group.php?'.api_get_cidreq().'">'.
- Display::return_icon(
- 'back.png',
- get_lang('Back to Groups list'),
- '',
- ICON_SIZE_MEDIUM
- ).
- '</a>';
- /*
- * Register to group
- */
- $subscribe_group = '';
- if (GroupManager::is_self_registration_allowed($user_id, $current_group)) {
- $subscribe_group = '<a class="btn btn-default" href="'.api_get_self().'?selfReg=1&group_id='.$current_group['id'].'" onclick="javascript: if(!confirm('."'".addslashes(api_htmlentities(get_lang("Please confirm your choice"), ENT_QUOTES))."'".')) return false;">'.
- get_lang('Add me to this group').'</a>';
- }
- /*
- * Unregister from group
- */
- $unsubscribe_group = '';
- if (GroupManager :: is_self_unregistration_allowed($user_id, $current_group)) {
- $unsubscribe_group = '<a class="btn btn-default" href="'.api_get_self().'?selfUnReg=1" onclick="javascript: if(!confirm('."'".addslashes(api_htmlentities(get_lang("Please confirm your choice"), ENT_QUOTES))."'".')) return false;">'.
- get_lang('Unsubscribe me from this group.').'</a>';
- }
- echo ' </div>';
- /* Main Display Area */
- $edit_url = '';
- if (api_is_allowed_to_edit(false, true) ||
- GroupManager::is_tutor_of_group($user_id, $current_group)
- ) {
- $edit_url = '<a href="'.api_get_path(WEB_CODE_PATH).'group/settings.php?'.api_get_cidreq().'">'.
- Display::return_icon('edit.png', get_lang('Edit this group'), '', ICON_SIZE_SMALL).'</a>';
- }
- echo Display::page_header(
- Security::remove_XSS($current_group['name']).' '.$edit_url.' '.$subscribe_group.' '.$unsubscribe_group
- );
- if (!empty($current_group['description'])) {
- echo '<p>'.Security::remove_XSS($current_group['description']).'</p>';
- }
- //if (GroupManager::userHasAccessToBrowse($user_id, $this_group, $session_id)) {
- // If the user is subscribed to the group or the user is a tutor of the group then
- if (api_is_allowed_to_edit(false, true) ||
- GroupManager::userHasAccessToBrowse($user_id, $current_group, api_get_session_id())
- ) {
- $actions_array = [];
- if (is_array($forums_of_groups)) {
- if ($current_group['forum_state'] != GroupManager::TOOL_NOT_AVAILABLE) {
- foreach ($forums_of_groups as $key => $value) {
- if ($value['forum_group_public_private'] == 'public' ||
- ($value['forum_group_public_private'] == 'private') ||
- !empty($user_is_tutor) ||
- api_is_allowed_to_edit(false, true)
- ) {
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'forum/viewforum.php?forum='.$value['forum_id'].'&'.api_get_cidreq().'&origin=group',
- 'content' => Display::return_icon(
- 'forum.png',
- get_lang('Forum').': '.$value['forum_title'],
- [],
- 32
- ),
- ];
- }
- }
- }
- }
- if ($current_group['doc_state'] != GroupManager::TOOL_NOT_AVAILABLE) {
- // Link to the documents area of this group
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'document/document.php?'.api_get_cidreq(),
- 'content' => Display::return_icon('folder.png', get_lang('Documents'), [], 32),
- ];
- }
- if ($current_group['calendar_state'] != GroupManager::TOOL_NOT_AVAILABLE) {
- $groupFilter = '';
- if (!empty($group_id)) {
- $groupFilter = "&type=course&user_id=GROUP:$group_id";
- }
- // Link to a group-specific part of agenda
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'calendar/agenda_js.php?'.api_get_cidreq().$groupFilter,
- 'content' => Display::return_icon('agenda.png', get_lang('Agenda'), [], 32),
- ];
- }
- if ($current_group['work_state'] != GroupManager::TOOL_NOT_AVAILABLE) {
- // Link to the works area of this group
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'work/work.php?'.api_get_cidreq(),
- 'content' => Display::return_icon('work.png', get_lang('Assignments'), [], 32),
- ];
- }
- if ($current_group['announcements_state'] != GroupManager::TOOL_NOT_AVAILABLE) {
- // Link to a group-specific part of announcements
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'announcements/announcements.php?'.api_get_cidreq(),
- 'content' => Display::return_icon('announce.png', get_lang('Announcements'), [], 32),
- ];
- }
- if ($current_group['wiki_state'] != GroupManager::TOOL_NOT_AVAILABLE) {
- // Link to the wiki area of this group
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'wiki/index.php?'.api_get_cidreq().'&action=show&title=index&session_id='.api_get_session_id().'&group_id='.$current_group['id'],
- 'content' => Display::return_icon('wiki.png', get_lang('Wiki'), [], 32),
- ];
- }
- if ($current_group['chat_state'] != GroupManager::TOOL_NOT_AVAILABLE) {
- // Link to the chat area of this group
- if (api_get_course_setting('allow_open_chat_window')) {
- $actions_array[] = [
- 'url' => "javascript: void(0);",
- 'content' => Display::return_icon('chat.png', get_lang('Chat'), [], 32),
- 'url_attributes' => [
- 'onclick' => " window.open('../chat/chat.php?".api_get_cidreq()."&toolgroup=".$current_group['id']."','window_chat_group_".api_get_course_id()."_".api_get_group_id()."','height=380, width=625, left=2, top=2, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no')",
- ],
- ];
- } else {
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH)."chat/chat.php?".api_get_cidreq()."&toolgroup=".$current_group['id'],
- 'content' => Display::return_icon('chat.png', get_lang('Chat'), [], 32),
- ];
- }
- }
- $enabled = api_get_plugin_setting('bbb', 'tool_enable');
- if ($enabled === 'true') {
- $bbb = new bbb();
- if ($bbb->hasGroupSupport()) {
- $actions_array[] = [
- 'url' => api_get_path(WEB_PLUGIN_PATH)."bbb/start.php?".api_get_cidreq(),
- 'content' => Display::return_icon('bbb.png', get_lang('Videoconference'), [], 32),
- ];
- }
- }
- if (!empty($actions_array)) {
- echo Display::actions($actions_array);
- }
- } else {
- $actions_array = [];
- if (is_array($forums_of_groups)) {
- if ($current_group['forum_state'] == GroupManager::TOOL_PUBLIC) {
- foreach ($forums_of_groups as $key => $value) {
- if ($value['forum_group_public_private'] == 'public') {
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'forum/viewforum.php?cidReq='.api_get_course_id().'&forum='.$value['forum_id'].'&gidReq='.Security::remove_XSS($current_group['id']).'&origin=group',
- 'content' => Display::return_icon(
- 'forum.png',
- get_lang('Group Forum'),
- [],
- ICON_SIZE_MEDIUM
- ),
- ];
- }
- }
- }
- }
- if ($current_group['doc_state'] == GroupManager::TOOL_PUBLIC) {
- // Link to the documents area of this group
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'document/document.php?'.api_get_cidreq(),
- 'content' => Display::return_icon('folder.png', get_lang('Documents'), [], ICON_SIZE_MEDIUM),
- ];
- }
- if ($current_group['calendar_state'] == GroupManager::TOOL_PUBLIC) {
- $groupFilter = '';
- if (!empty($group_id)) {
- $groupFilter = "&type=course&user_id=GROUP:$group_id";
- }
- // Link to a group-specific part of agenda
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'calendar/agenda_js.php?'.api_get_cidreq().$groupFilter,
- 'content' => Display::return_icon('agenda.png', get_lang('Agenda'), [], 32),
- ];
- }
- if ($current_group['work_state'] == GroupManager::TOOL_PUBLIC) {
- // Link to the works area of this group
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'work/work.php?'.api_get_cidreq(),
- 'content' => Display::return_icon('work.png', get_lang('Assignments'), [], ICON_SIZE_MEDIUM),
- ];
- }
- if ($current_group['announcements_state'] == GroupManager::TOOL_PUBLIC) {
- // Link to a group-specific part of announcements
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'announcements/announcements.php?'.api_get_cidreq(),
- 'content' => Display::return_icon('announce.png', get_lang('Announcements'), [], ICON_SIZE_MEDIUM),
- ];
- }
- if ($current_group['wiki_state'] == GroupManager::TOOL_PUBLIC) {
- // Link to the wiki area of this group
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH).'wiki/index.php?'.api_get_cidreq().'&action=show&title=index&session_id='.api_get_session_id().'&group_id='.$current_group['id'],
- 'content' => Display::return_icon('wiki.png', get_lang('Wiki'), [], 32),
- ];
- }
- if ($current_group['chat_state'] == GroupManager::TOOL_PUBLIC) {
- // Link to the chat area of this group
- if (api_get_course_setting('allow_open_chat_window')) {
- $actions_array[] = [
- 'url' => "javascript: void(0);\" onclick=\"window.open('../chat/chat.php?".api_get_cidreq()."&toolgroup=".$current_group['id']."','window_chat_group_".api_get_course_id()."_".api_get_group_id()."','height=380, width=625, left=2, top=2, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no') \"",
- 'content' => Display::return_icon('chat.png', get_lang('Chat'), [], 32),
- ];
- } else {
- $actions_array[] = [
- 'url' => api_get_path(WEB_CODE_PATH)."chat/chat.php?".api_get_cidreq()."&toolgroup=".$current_group['id'],
- 'content' => Display::return_icon('chat.png', get_lang('Chat'), [], 32),
- ];
- }
- }
- if (!empty($actions_array)) {
- echo Display::actions($actions_array);
- }
- }
- /*
- * List all the tutors of the current group
- */
- $tutors = GroupManager::get_subscribed_tutors($current_group);
- $tutor_info = '';
- if (count($tutors) == 0) {
- $tutor_info = get_lang('(none)');
- } else {
- $tutor_info .= '<ul class="thumbnails">';
- foreach ($tutors as $index => $tutor) {
- $userInfo = api_get_user_info($tutor['user_id']);
- $username = api_htmlentities(sprintf(get_lang('Login: %s'), $userInfo['username']), ENT_QUOTES);
- $completeName = $userInfo['complete_name'];
- $photo = '<img src="'.$userInfo['avatar'].'" alt="'.$completeName.'" width="32" height="32" title="'.$completeName.'" />';
- $tutor_info .= '<li>';
- $tutor_info .= $userInfo['complete_name_with_message_link'];
- $tutor_info .= '</li>';
- }
- $tutor_info .= '</ul>';
- }
- echo Display::page_subheader(get_lang('Coaches'));
- if (!empty($tutor_info)) {
- echo $tutor_info;
- }
- echo '<br />';
- /*
- * List all the members of the current group
- */
- echo Display::page_subheader(get_lang('Group members'));
- $table = new SortableTable(
- 'group_users',
- 'get_number_of_group_users',
- 'get_group_user_data',
- (api_is_western_name_order() xor api_sort_by_first_name()) ? 2 : 1
- );
- $origin = api_get_origin();
- $my_cidreq = isset($_GET['cidReq']) ? Security::remove_XSS($_GET['cidReq']) : '';
- $my_gidreq = isset($_GET['gidReq']) ? Security::remove_XSS($_GET['gidReq']) : '';
- $parameters = ['cidReq' => $my_cidreq, 'origin' => $origin, 'gidReq' => $my_gidreq];
- $table->set_additional_parameters($parameters);
- $table->set_header(0, '');
- if (api_is_western_name_order()) {
- $table->set_header(1, get_lang('First name'));
- $table->set_header(2, get_lang('Last name'));
- } else {
- $table->set_header(1, get_lang('Last name'));
- $table->set_header(2, get_lang('First name'));
- }
- if (api_get_setting('show_email_addresses') == 'true' || api_is_allowed_to_edit() == 'true') {
- $table->set_header(3, get_lang('e-mail'));
- $table->set_column_filter(3, 'email_filter');
- $table->set_header(4, get_lang('active'));
- $table->set_column_filter(4, 'activeFilter');
- } else {
- $table->set_header(3, get_lang('active'));
- $table->set_column_filter(3, 'activeFilter');
- }
- //the order of these calls is important
- //$table->set_column_filter(1, 'user_name_filter');
- //$table->set_column_filter(2, 'user_name_filter');
- $table->set_column_filter(0, 'user_icon_filter');
- $table->display();
- /**
- * Get the number of subscribed users to the group.
- *
- * @return int
- *
- * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University, Belgium
- *
- * @version April 2008
- */
- function get_number_of_group_users()
- {
- $groupInfo = GroupManager::get_group_properties(api_get_group_id());
- $course_id = api_get_course_int_id();
- if (empty($groupInfo) || empty($course_id)) {
- return 0;
- }
- // Database table definition
- $table = Database::get_course_table(TABLE_GROUP_USER);
- // Query
- $sql = "SELECT count(iid) AS number_of_users
- FROM $table
- WHERE
- c_id = $course_id AND
- group_id = '".intval($groupInfo['iid'])."'";
- $result = Database::query($sql);
- $return = Database::fetch_array($result, 'ASSOC');
- return $return['number_of_users'];
- }
- /**
- * Get the details of the users in a group.
- *
- * @param int $from starting row
- * @param int $number_of_items number of items to be displayed
- * @param int $column sorting colum
- * @param int $direction sorting direction
- *
- * @return array
- *
- * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University, Belgium
- *
- * @version April 2008
- */
- function get_group_user_data($from, $number_of_items, $column, $direction)
- {
- $groupInfo = GroupManager::get_group_properties(api_get_group_id());
- $course_id = api_get_course_int_id();
- if (empty($groupInfo) || empty($course_id)) {
- return 0;
- }
- // Database table definition
- $table_group_user = Database::get_course_table(TABLE_GROUP_USER);
- $table_user = Database::get_main_table(TABLE_MAIN_USER);
- $tableGroup = Database::get_course_table(TABLE_GROUP);
- // Query
- if (api_get_setting('show_email_addresses') === 'true') {
- $sql = "SELECT user.id AS col0,
- ".(
- api_is_western_name_order() ?
- "user.firstname AS col1,
- user.lastname AS col2,"
- :
- "user.lastname AS col1,
- user.firstname AS col2,"
- )."
- user.email AS col3
- , user.active AS col4
- FROM $table_user user
- INNER JOIN $table_group_user group_rel_user
- ON (group_rel_user.user_id = user.id)
- INNER JOIN $tableGroup g
- ON (group_rel_user.group_id = g.iid)
- WHERE
- group_rel_user.c_id = $course_id AND
- g.iid = '".$groupInfo['iid']."'
- ORDER BY col$column $direction
- LIMIT $from, $number_of_items";
- } else {
- if (api_is_allowed_to_edit()) {
- $sql = "SELECT DISTINCT
- u.id AS col0,
- ".(api_is_western_name_order() ?
- "u.firstname AS col1,
- u.lastname AS col2,"
- :
- "u.lastname AS col1,
- u.firstname AS col2,")."
- u.email AS col3
- , u.active AS col4
- FROM $table_user u
- INNER JOIN $table_group_user gu
- ON (gu.user_id = u.id)
- INNER JOIN $tableGroup g
- ON (gu.group_id = g.iid)
- WHERE
- g.iid = '".$groupInfo['iid']."' AND
- gu.c_id = $course_id
- ORDER BY col$column $direction
- LIMIT $from, $number_of_items";
- } else {
- $sql = "SELECT DISTINCT
- user.id AS col0,
- ".(
- api_is_western_name_order() ?
- "user.firstname AS col1,
- user.lastname AS col2 "
- :
- "user.lastname AS col1,
- user.firstname AS col2 "
- )."
- , user.active AS col3
- FROM $table_user user
- INNER JOIN $table_group_user group_rel_user
- ON (group_rel_user.user_id = user.id)
- INNER JOIN $tableGroup g
- ON (group_rel_user.group_id = g.iid)
- WHERE
- g.iid = '".$groupInfo['iid']."' AND
- group_rel_user.c_id = $course_id AND
- group_rel_user.user_id = user.id AND
- g.iid = '".$groupInfo['iid']."'
- ORDER BY col$column $direction
- LIMIT $from, $number_of_items";
- }
- }
- $return = [];
- $result = Database::query($sql);
- while ($row = Database::fetch_row($result)) {
- $return[] = $row;
- }
- return $return;
- }
- /**
- * Returns a mailto-link.
- *
- * @param string $email An email-address
- *
- * @return string HTML-code with a mailto-link
- */
- function email_filter($email)
- {
- return Display::encrypted_mailto_link($email, $email);
- }
- function activeFilter($isActive)
- {
- if ($isActive) {
- return Display::return_icon('accept.png', get_lang('active'), [], ICON_SIZE_TINY);
- }
- return Display::return_icon('error.png', get_lang('inactive'), [], ICON_SIZE_TINY);
- }
- /**
- * Display a user icon that links to the user page.
- *
- * @param int $user_id the id of the user
- *
- * @return string code
- *
- * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University, Belgium
- *
- * @version April 2008
- */
- function user_icon_filter($user_id)
- {
- $userInfo = api_get_user_info($user_id);
- $photo = '<img src="'.$userInfo['avatar'].'" alt="'.$userInfo['complete_name'].'" width="22" height="22" title="'.$userInfo['complete_name'].'" />';
- return Display::url($photo, $userInfo['profile_url']);
- }
- /**
- * Return user profile link around the given user name.
- *
- * The parameters use a trick of the sorteable table, where the first param is
- * the original value of the column
- *
- * @param string User name (value of the column at the time of calling)
- * @param string URL parameters
- * @param array Row of the "sortable table" as it is at the time of function call - we extract the user ID from there
- *
- * @return string HTML link
- */
- function user_name_filter($name, $url_params, $row)
- {
- $userInfo = api_get_user_info($row[0]);
- return UserManager::getUserProfileLink($userInfo);
- }
- if ($origin != 'learnpath') {
- Display::display_footer();
- }
|