123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <?php
- /* For licensing terms, see /dokeos_license.txt */
- $language_file = array('admin');
- require_once '../inc/global.inc.php';
- require_once api_get_path(LIBRARY_PATH).'usermanager.lib.php';
- require_once api_get_path(LIBRARY_PATH).'group_portal_manager.lib.php';
- require_once api_get_path(LIBRARY_PATH).'social.lib.php';
- require_once api_get_path(LIBRARY_PATH).'message.lib.php';
- $this_section = SECTION_SOCIAL;
- $interbreadcrumb[]= array ('url' =>'home.php','name' => get_lang('Social'));
- Display :: display_header($tool_name, 'Groups');
- //show the action menu
- SocialManager::show_social_menu();
- echo '<div class="actions-title">';
- echo get_lang('Groups');
- echo '</div>';
- // getting group information
- $group_id = intval($_GET['id']);
- $group_info = GroupPortalManager::get_group_data($group_id);
-
- if ($group_id != 0 ) {
-
- //Loading group information
- if (isset($_GET['status']) && $_GET['status']=='sent') {
- Display::display_confirmation_message(get_lang('MessageHasBeenSent'), false);
- }
- if (isset($_GET['action']) && $_GET['action']=='leave') {
- $user_leaved = intval($_GET['u']);
- //I can "leave me myself"
- if (api_get_user_id() == $user_leaved) {
- GroupPortalManager::delete_user_rel_group($user_leaved, $group_id);
- }
- }
-
- // add a user to a group if its open
- if (isset($_GET['action']) && $_GET['action']=='join') {
- // we add a user only if is a open group
- $user_join = intval($_GET['u']);
- if (api_get_user_id() == $user_join) {
- if ($group_info['visibility'] == GROUP_PERMISSION_OPEN) {
- GroupPortalManager::add_user_to_group($user_join, $group_id);
- } else {
- GroupPortalManager::add_user_to_group($user_join, $group_id, GROUP_USER_PERMISSION_PENDING_INVITATION);
- }
-
- }
- }
-
- $picture = GroupPortalManager::get_picture_group($group_id, $group_info['picture_uri'],160,'medium_');
- $tags = GroupPortalManager::get_group_tags($group_id, true);
- $users = GroupPortalManager::get_users_by_group($group_id, true);
-
-
- echo '<div id="layout-left" style="float: left; width: 280px; height: 100%;">';
- //Group's title
- echo '<h1>'.$group_info['name'].'</h1>';
-
- //image
- echo '<div id="group_image">';
- echo $img = '<img src="'.$picture['file'].'" />';
- echo '</div>';
-
- //description
- echo '<div id="group_description">';
- echo $group_info['description'];
- echo '</div>';
-
- //Privacy
- echo '<div id="group_privacy">';
- echo get_lang('Privacy').' : ';
- if ($group_info['visibility']== GROUP_PERMISSION_OPEN) {
- echo get_lang('ThisIsAnOpenGroup');
- } elseif ($group_info['visibility']== GROUP_PERMISSION_CLOSED) {
- echo get_lang('ThisIsACloseGroup');
- }
- echo '</div>';
-
- //group tags
- if (!empty($tags)) {
- echo '<div id="group_tags">';
- echo get_lang('Tags').' : '.$tags;
- echo '</div>';
- }
-
- echo '<div id="actions" style="margin:10px">';
- echo '<a href="'.api_get_path(WEB_PATH).'main/messages/new_message.php?group_id='.$group_id.'">'.Display::return_icon('message_new.png',api_xml_http_response_encode(get_lang('ComposeMessage'))).api_xml_http_response_encode(get_lang('ComposeMessage')).'</a>';
- echo '</div>';
- echo get_lang('Members').' : ';
-
- echo '<div id="group_members">';
- foreach($users as $user) {
- if ($user['relation_type'] != GROUP_USER_PERMISSION_PENDING_INVITATION) {
- if ($user['relation_type'] == GROUP_USER_PERMISSION_ADMIN) {
- $user['lastname'].= Display::return_icon('admin_star.png', get_lang('Admin'));
- }
- echo '<div class="group_member_item"><a href="profile.php?u='.$user['user_id'].'">'.$user['picture_uri'].$user['firstname'].$user['lastname'].'</a></div>';
- }
- }
- echo '</div>';
-
-
- echo '<div id="group_permissions">';
-
- if (is_array($users[api_get_user_id()]) && count($users[api_get_user_id()]) > 0) {
- //im a member
- if ($users[api_get_user_id()]['relation_type'] !='' ) {
-
- $my_group_role = $users[api_get_user_id()]['relation_type'];
- // I'm just a reader
- if ($my_group_role == GROUP_USER_PERMISSION_READER) {
- echo '<a href="groups.php?id='.$group_id.'&action=leave&u='.api_get_user_id().'">'.get_lang('LeaveGroup').'</a>';
- echo 'Invite others/';
- //the main admin
- } elseif ($my_group_role == GROUP_USER_PERMISSION_ADMIN) {
- echo 'Im the admin/';
- echo '<a href="group_edit.php?id='.$group_id.'">'.get_lang('EditGroup').'</a>';
- echo '<a href="group_members.php?id='.$group_id.'">'.get_lang('MemberList').'</a>';
- echo '<a href="group_invitation.php?id='.$group_id.'">'.get_lang('InviteFriends').'</a>';
-
- } elseif ($my_group_role == GROUP_USER_PERMISSION_PENDING_INVITATION) {
- echo get_lang('PendingApproval');
- }
- } else {
- if ($group_info['visibility']!= GROUP_PERMISSION_CLOSED ) {
- //im not a member
- echo '<a href="groups.php?id='.$group_id.'&action=join&u='.api_get_user_id().'">'.get_lang('JoinGroup').'</a>';
- }
- }
- } else {
- //im not a member
- echo '<a href="groups.php?id='.$group_id.'&action=join&u='.api_get_user_id().'">'.get_lang('JoinGroup').'</a>';
- }
- echo '</div>'; // end layout permissions
- echo '</div>'; // end layout left
- echo '<div id="layout_right" style="margin-left: 282px;">';
- echo '<div class="messages">';
- MessageManager::display_messages_for_group($group_id);
- echo '</div>'; // end layout messages
- echo '</div>'; // end layout right
-
- } else {
-
- // Newest groups --------
-
- $results = GroupPortalManager::get_groups_by_age(10 , true);
- $groups = array();
- foreach ($results as $result) {
- $id = $result['id'];
- $url_open = '<a href="groups.php?id='.$id.'">';
- $url_close = '</a>';
- $groups[]= array($url_open.$result['picture_uri'].$url_close, $url_open.$result['name'].$url_close);
- }
- if (count($groups) > 0) {
- echo '<h1>'.get_lang('Newest').'</h1>';
- Display::display_sortable_grid('search_users', array(), $groups, array('hide_navigation'=>true, 'per_page' => 100), $query_vars, false, array(true, true, true,false));
- }
-
- // Pop groups -----
-
- $results = GroupPortalManager::get_groups_by_popularity(10 , true);
- $groups = array();
- foreach ($results as $result) {
- $id = $result['id'];
- $url_open = '<a href="groups.php?id='.$id.'">';
- $url_close = '</a>';
- $groups[]= array($url_open.$result['picture_uri'].$url_close, $url_open.$result['name'].$url_close,$result['count']);
- }
- if (count($groups) > 0) {
- echo '<h1>'.get_lang('Popular').'</h1>';
- Display::display_sortable_grid('search_users', array(), $groups, array('hide_navigation'=>true, 'per_page' => 100), $query_vars, false, array(true, true, true,true));
- }
-
-
- // My groups -----
-
- $results = GroupPortalManager::get_groups_by_user(api_get_user_id(), 0, true);
- $groups = array();
- foreach ($results as $result) {
- $id = $result['id'];
- $url_open = '<a href="groups.php?id='.$id.'">';
- $url_close = '</a>';
- if ($result['relation_type'] == GROUP_USER_PERMISSION_ADMIN) {
- $result['name'].= Display::return_icon('admin_star.png', get_lang('Admin'));
- }
- $groups[]= array($url_open.$result['picture_uri'].$url_close, $url_open.$result['name'].$url_close);
- }
- echo '<h1>'.get_lang('MyGroups').'</h1>';
- echo '<a href="group_add.php">'.get_lang('CreateAgroup').'</a>';
- if (count($groups) > 0) {
- Display::display_sortable_grid('search_users', array(), $groups, array('hide_navigation'=>true, 'per_page' => 100), $query_vars, false, array(true, true, true,false));
- }
- }
- Display :: display_footer();
- ?>
|