|
|
|
@ -250,73 +250,217 @@ if (is_array($personal_course_list)) { |
|
|
|
//show the action menu |
|
|
|
//show the action menu |
|
|
|
//SocialManager::show_social_menu(); |
|
|
|
//SocialManager::show_social_menu(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$user_online_list = WhoIsOnline(api_get_setting('time_limit_whosonline')); |
|
|
|
|
|
|
|
$user_online_count = count($user_online_list); |
|
|
|
|
|
|
|
//if ($user_id == api_get_user_id()) { |
|
|
|
|
|
|
|
$title = get_lang('ViewMySharedProfile'); |
|
|
|
|
|
|
|
/*} else { |
|
|
|
|
|
|
|
$title = get_lang('ViewSharedProfile').' - '.api_get_person_name($user_info['firstname'], $user_info['lastname']); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
echo '<div class="actions-title-groups">'; |
|
|
|
|
|
|
|
echo '<table width="100%"><tr><td width="150px" bgcolor="#32578b"><center><span class="menuTex1">'.$title.'</span></center></td> |
|
|
|
|
|
|
|
<td width="15px"> </td><td bgcolor="#32578b">'.Display::return_icon('whoisonline.png','',array('hspace'=>'6')).'<a href="#" ><span class="menuTex1">'.get_lang('FriendsOnline').' '.$user_online_count.'</span></a></td> |
|
|
|
|
|
|
|
</tr></table>'; |
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
echo '<div class="menuTitle" align="center"><span class="menuTex1">'.get_lang('Menu').'</span></div>'; |
|
|
|
|
|
|
|
echo '<div class="TitleRigth">'.Display::return_icon('whoisonline.png','',array('hspace'=>'6')).'<a href="#" ><span class="menuTex1">'.$who_is_on_line.'</span></a></div>'; |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
echo '<div class="actions-title">'; |
|
|
|
echo '<div class="actions-title">'; |
|
|
|
if ($user_id == api_get_user_id()) |
|
|
|
if ($user_id == api_get_user_id()) |
|
|
|
echo get_lang('ViewMySharedProfile'); |
|
|
|
echo get_lang('ViewMySharedProfile'); |
|
|
|
else |
|
|
|
else |
|
|
|
echo get_lang('ViewSharedProfile').' - '.api_get_person_name($user_info['firstname'], $user_info['lastname']); |
|
|
|
echo get_lang('ViewSharedProfile').' - '.api_get_person_name($user_info['firstname'], $user_info['lastname']); |
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<div id="socialContentLeft">'; |
|
|
|
|
|
|
|
//this include the social menu div |
|
|
|
|
|
|
|
SocialManager::show_social_menu('shared_profile', null, $user_id, $show_full_profile); |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<div id="socialContentRigth">'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<div class="boxProfile">'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<div class="boxProfileContent">'; |
|
|
|
|
|
|
|
echo '<div>'.Display::return_icon('boxmygroups.jpg').'</div>'; |
|
|
|
|
|
|
|
echo '<div class="profileContent">'; |
|
|
|
|
|
|
|
//--- Basic Information |
|
|
|
|
|
|
|
echo '<div><h3>'.get_lang('Information').'</h3></div>'; |
|
|
|
|
|
|
|
if ($show_full_profile) { |
|
|
|
|
|
|
|
echo '<div class="social-profile-info" >'; |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('UserName').'</dt> |
|
|
|
|
|
|
|
<dd>'. $user_info['username'].' </dd>'; |
|
|
|
|
|
|
|
if (!empty($user_info['firstname']) || !empty($user_info['lastname'])) |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('Name').'</dt> |
|
|
|
|
|
|
|
<dd>'. api_get_person_name($user_info['firstname'], $user_info['lastname']).'</dd>'; |
|
|
|
|
|
|
|
if (!empty($user_info['official_code'])) |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('OfficialCode').'</dt> |
|
|
|
|
|
|
|
<dd>'.$user_info['official_code'].'</dd>'; |
|
|
|
|
|
|
|
if (!empty($user_info['email'])) |
|
|
|
|
|
|
|
if (api_get_setting('show_email_addresses')=='true') |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('Email').'</dt> |
|
|
|
|
|
|
|
<dd>'.$user_info['email'].'</dd>'; |
|
|
|
|
|
|
|
if (!empty($user_info['phone'])) |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('Phone').'</dt> |
|
|
|
|
|
|
|
<dd>'. $user_info['phone'].'</dd>'; |
|
|
|
|
|
|
|
echo '</dl>'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
echo '<div class="social-profile-info" >'; |
|
|
|
|
|
|
|
echo '<dl>'; |
|
|
|
|
|
|
|
if (!empty($user_info['firstname']) || !empty($user_info['lastname'])) |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('Name').'</dt> |
|
|
|
|
|
|
|
<dd>'. api_get_person_name($user_info['firstname'], $user_info['lastname']).'</dd>'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<div class="clear"></div>'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Extra information |
|
|
|
|
|
|
|
if ($show_full_profile) { |
|
|
|
|
|
|
|
//-- Extra Data |
|
|
|
|
|
|
|
$t_uf = Database :: get_main_table(TABLE_MAIN_USER_FIELD); |
|
|
|
|
|
|
|
$t_ufo = Database :: get_main_table(TABLE_MAIN_USER_FIELD_OPTIONS); |
|
|
|
|
|
|
|
$extra_user_data = UserManager::get_extra_user_data($user_id); |
|
|
|
|
|
|
|
$extra_information = ''; |
|
|
|
|
|
|
|
if (is_array($extra_user_data) && count($extra_user_data)>0 ) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$extra_information = '<br />'; |
|
|
|
|
|
|
|
$extra_information .= '<div><h3>'.get_lang('ExtraInformation').'</h3></div>'; |
|
|
|
|
|
|
|
$extra_information .='<div class="social-profile-info">'; |
|
|
|
|
|
|
|
$extra_information_value = ''; |
|
|
|
|
|
|
|
foreach($extra_user_data as $key=>$data) { |
|
|
|
|
|
|
|
// get display text, visibility and type from user_field table |
|
|
|
|
|
|
|
$field_variable = str_replace('extra_','',$key); |
|
|
|
|
|
|
|
$sql = "SELECT field_display_text,field_visible,field_type,id FROM $t_uf WHERE field_variable ='$field_variable'"; |
|
|
|
|
|
|
|
$res_field = Database::query($sql,__FILE__,__LINE__); |
|
|
|
|
|
|
|
$row_field = Database::fetch_row($res_field); |
|
|
|
|
|
|
|
$field_display_text = $row_field[0]; |
|
|
|
|
|
|
|
$field_visible = $row_field[1]; |
|
|
|
|
|
|
|
$field_type = $row_field[2]; |
|
|
|
|
|
|
|
$field_id = $row_field[3]; |
|
|
|
|
|
|
|
if ($field_visible == 1) { |
|
|
|
|
|
|
|
if (is_array($data)) { |
|
|
|
|
|
|
|
$extra_information_value .= '<dt>'.ucfirst($field_display_text).'</dt><dd> '.implode(',',$data).'</dd>'; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
if ($field_type == USER_FIELD_TYPE_DOUBLE_SELECT) { |
|
|
|
|
|
|
|
$id_options = explode(';',$data); |
|
|
|
|
|
|
|
$value_options = array(); |
|
|
|
|
|
|
|
// get option display text from user_field_options table |
|
|
|
|
|
|
|
foreach ($id_options as $id_option) { |
|
|
|
|
|
|
|
$sql = "SELECT option_display_text FROM $t_ufo WHERE id = '$id_option'"; |
|
|
|
|
|
|
|
$res_options = Database::query($sql,__FILE__,__LINE__); |
|
|
|
|
|
|
|
$row_options = Database::fetch_row($res_options); |
|
|
|
|
|
|
|
$value_options[] = $row_options[0]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$extra_information_value .= '<dt>'.ucfirst($field_display_text).':</dt><dd>'.implode(' ',$value_options).'</dd>'; |
|
|
|
|
|
|
|
} elseif($field_type == USER_FIELD_TYPE_TAG ) { |
|
|
|
|
|
|
|
$user_tags = UserManager::get_user_tags($user_id, $field_id); |
|
|
|
|
|
|
|
$tag_tmp = array(); |
|
|
|
|
|
|
|
foreach ($user_tags as $tags) { |
|
|
|
|
|
|
|
//$tag_tmp[] = $tags['tag']; |
|
|
|
|
|
|
|
$tag_tmp[] = '<a href="'.api_get_path(WEB_PATH).'main/social/search.php?q='.$tags['tag'].'">'.$tags['tag'].'</a>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (is_array($user_tags) && count($user_tags)>0) { |
|
|
|
|
|
|
|
$extra_information_value .= '<dt>'.ucfirst($field_display_text).':</dt><dd>'.implode(', ',$tag_tmp).'</dd>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
if (!empty($data)) { |
|
|
|
|
|
|
|
$extra_information_value .= '<dt>'.ucfirst($field_display_text).':</dt><dd>'.$data.'</dd>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// if there are information to show |
|
|
|
|
|
|
|
if (!empty($extra_information_value)) { |
|
|
|
|
|
|
|
$extra_information .= $extra_information_value; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$extra_information .= '</div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// if there are information to show |
|
|
|
|
|
|
|
if (!empty($extra_information_value)) echo $extra_information; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '</div>'; // close div tag .profileContent |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '</div>'; // close div tag .boxprofileContent |
|
|
|
|
|
|
|
|
|
|
|
echo '<div id="social-profile-wrapper">'; |
|
|
|
|
|
|
|
// RIGHT COLUMN |
|
|
|
|
|
|
|
echo '<div id="social-profile-right">'; |
|
|
|
|
|
|
|
//---- FRIENDS |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($show_full_profile) { |
|
|
|
if ($show_full_profile) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<div class="boxProfileContent">'; |
|
|
|
|
|
|
|
echo '<div>'.Display::return_icon('boxmygroups.jpg').'</div>'; |
|
|
|
|
|
|
|
echo '<div class="profileContent">'; |
|
|
|
|
|
|
|
|
|
|
|
$list_path_friends= $list_path_normal_friends = $list_path_parents = array(); |
|
|
|
$list_path_friends= $list_path_normal_friends = $list_path_parents = array(); |
|
|
|
|
|
|
|
|
|
|
|
//SOCIALGOODFRIEND , SOCIALFRIEND, SOCIALPARENT |
|
|
|
//SOCIALGOODFRIEND , SOCIALFRIEND, SOCIALPARENT |
|
|
|
|
|
|
|
|
|
|
|
$friends = SocialManager::get_friends($user_id, SOCIALFRIEND); |
|
|
|
$friends = SocialManager::get_friends($user_id, SOCIALFRIEND); |
|
|
|
|
|
|
|
|
|
|
|
$friend_html = ''; |
|
|
|
$friend_html = ''; |
|
|
|
$number_of_images = 3; |
|
|
|
//$number_of_images = 3; |
|
|
|
|
|
|
|
$number_of_images = 6; |
|
|
|
$number_friends = 0; |
|
|
|
$number_friends = 0; |
|
|
|
$list_friends_id = array(); |
|
|
|
$list_friends_id = array(); |
|
|
|
$number_friends = count($friends); |
|
|
|
$number_friends = count($friends); |
|
|
|
$number_of_images = $number_friends; |
|
|
|
//$number_of_images = $number_friends; |
|
|
|
if ($number_friends != 0) { |
|
|
|
if ($number_friends != 0) { |
|
|
|
|
|
|
|
/* |
|
|
|
$number_loop = ($number_friends/$number_of_images); |
|
|
|
$number_loop = ($number_friends/$number_of_images); |
|
|
|
$loop_friends = ceil($number_loop); |
|
|
|
$loop_friends = ceil($number_loop); |
|
|
|
$j=0; |
|
|
|
*/ |
|
|
|
$friend_html .= '<div class="sectiontitle">'.get_lang('SocialFriend').'</div>'; |
|
|
|
|
|
|
|
|
|
|
|
$friend_html .= '<div><h3>'.get_lang('SocialFriend').'</h3></div>'; |
|
|
|
|
|
|
|
|
|
|
|
$friend_html .= '<div id="friend-container" class="social-friend-container">'; |
|
|
|
$friend_html .= '<div id="friend-container" class="social-friend-container">'; |
|
|
|
$friend_html.= '<div id="friend-header">'; |
|
|
|
$friend_html.= '<div id="friend-header" >'; |
|
|
|
//$friend_html.= $friends_count.' '.get_lang('Friends'); |
|
|
|
//$friend_html.= $friends_count.' '.get_lang('Friends'); |
|
|
|
if ($number_friends == 1) |
|
|
|
if ($number_friends == 1) |
|
|
|
$friend_html.= '<div style="float:left;">'.$number_friends.' '.get_lang('Friend').'</div>'; |
|
|
|
$friend_html.= '<div style="float:left;width:80%">'.$number_friends.' '.get_lang('Friend').'</div>'; |
|
|
|
else |
|
|
|
else |
|
|
|
$friend_html.= '<div style="float:left;">'.$number_friends.' '.get_lang('Friends').'</div>'; |
|
|
|
$friend_html.= '<div style="float:left;width:80%">'.$number_friends.' '.get_lang('Friends').'</div>'; |
|
|
|
if (api_get_user_id() == $user_id) { |
|
|
|
if (api_get_user_id() == $user_id) { |
|
|
|
$friend_html.= '<div style="float:right;"><a href="friends.php">'.get_lang('SeeAll').'</a></div>'; |
|
|
|
$friend_html.= '<div style="float:right;width:20%"><a href="friends.php">'.get_lang('SeeAll').'</a></div>'; |
|
|
|
} |
|
|
|
} |
|
|
|
$friend_html.= '</div>'; // close div friend-header |
|
|
|
$friend_html.= '</div>'; // close div friend-header |
|
|
|
|
|
|
|
$j=1; |
|
|
|
|
|
|
|
for ($k=0;$k<$number_friends;$k++) { |
|
|
|
|
|
|
|
|
|
|
|
for ($k=0;$k<$loop_friends;$k++) { |
|
|
|
if ($j > $number_of_images) break; |
|
|
|
|
|
|
|
/* |
|
|
|
if ($j==$number_of_images) { |
|
|
|
if ($j==$number_of_images) { |
|
|
|
$number_of_images=$number_of_images*2; |
|
|
|
$number_of_images=$number_of_images*2; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
*/ |
|
|
|
while ($j<$number_of_images) { |
|
|
|
|
|
|
|
if (isset($friends[$j])) { |
|
|
|
//while ($j<$number_of_images) { |
|
|
|
$friend = $friends[$j]; |
|
|
|
if (isset($friends[$k])) { |
|
|
|
$name_user = api_get_person_name($friend['firstName'], $friend['lastName']); |
|
|
|
$friend = $friends[$k]; |
|
|
|
$friend_html.='<div id=div_'.$friend['friend_user_id'].' class="image_friend_network" ><span><center>'; |
|
|
|
$name_user = api_get_person_name($friend['firstName'], $friend['lastName']); |
|
|
|
// the height = 92 must be the sqme in the image_friend_network span style in default.css |
|
|
|
$friend_html.='<div id=div_'.$friend['friend_user_id'].' class="image_friend_network" ><span><center>'; |
|
|
|
$friends_profile = SocialManager::get_picture_user($friend['friend_user_id'], $friend['image'], 92, USER_IMAGE_SIZE_MEDIUM , 'width="85" height="90" '); |
|
|
|
// the height = 92 must be the sqme in the image_friend_network span style in default.css |
|
|
|
|
|
|
|
$friends_profile = SocialManager::get_picture_user($friend['friend_user_id'], $friend['image'], 92, USER_IMAGE_SIZE_MEDIUM , 'width="85" height="90" '); |
|
|
|
$friend_html.='<a href="profile.php?u='.$friend['friend_user_id'].'&'.$link_shared.'">'; |
|
|
|
|
|
|
|
$friend_html.='<img src="'.$friends_profile['file'].'" '.$friends_profile['style'].' id="imgfriend_'.$friend['friend_user_id'].'" title="'.$name_user.'" />'; |
|
|
|
$friend_html.='<a href="profile.php?u='.$friend['friend_user_id'].'&'.$link_shared.'">'; |
|
|
|
$friend_html.= '</center></span>'; |
|
|
|
$friend_html.='<img src="'.$friends_profile['file'].'" '.$friends_profile['style'].' id="imgfriend_'.$friend['friend_user_id'].'" title="'.$name_user.'" />'; |
|
|
|
$friend_html.= '<center class="friend">'.$name_user.'</a></center>'; |
|
|
|
$friend_html.= '</center></span>'; |
|
|
|
$friend_html.= '</div>'; |
|
|
|
$friend_html.= '<center class="friend">'.$name_user.'</a></center>'; |
|
|
|
} |
|
|
|
$friend_html.= '</div>'; |
|
|
|
$j++; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
//$j++; |
|
|
|
|
|
|
|
//} |
|
|
|
|
|
|
|
$j++; |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
// No friends!! :( |
|
|
|
// No friends!! :( |
|
|
|
$friend_html .= '<div class="sectiontitle">'.get_lang('Friends').'</div>'; |
|
|
|
$friend_html .= '<div><h3>'.get_lang('SocialFriend').'</h3></div>'; |
|
|
|
$friend_html.= '<div id="friend-container" class="social-friend-container">'; |
|
|
|
$friend_html.= '<div id="friend-container" class="social-friend-container">'; |
|
|
|
$friend_html.= '<div id="friend-header">'; |
|
|
|
$friend_html.= '<div id="friend-header">'; |
|
|
|
$friend_html.= '<div style="float:left; padding:0px 8px 0px 8px;">'.get_lang('NoFriendsInYourContactList').'<br /><a href="'.api_get_path(WEB_PATH).'whoisonline.php">'.get_lang('TryAndFindSomeFriends').'</a></div>'; |
|
|
|
$friend_html.= '<div style="float:left; padding:0px 8px 0px 8px;">'.get_lang('NoFriendsInYourContactList').'<br /><a href="'.api_get_path(WEB_PATH).'whoisonline.php">'.get_lang('TryAndFindSomeFriends').'</a></div>'; |
|
|
|
@ -325,398 +469,233 @@ echo '<div id="social-profile-wrapper">'; |
|
|
|
$friend_html.= '</div>'; |
|
|
|
$friend_html.= '</div>'; |
|
|
|
echo $friend_html; |
|
|
|
echo $friend_html; |
|
|
|
|
|
|
|
|
|
|
|
//Pending invitations |
|
|
|
echo '</div>'; |
|
|
|
if (!isset($_GET['u']) || (isset($_GET['u']) && $_GET['u']==api_get_user_id())) { |
|
|
|
} |
|
|
|
$pending_invitations = SocialManager::get_list_invitation_of_friends_by_user_id(api_get_user_id()); |
|
|
|
|
|
|
|
$list_get_path_web=SocialManager::get_list_web_path_user_invitation_by_user_id(api_get_user_id()); |
|
|
|
|
|
|
|
$count_pending_invitations = count($pending_invitations); |
|
|
|
|
|
|
|
//echo '<div class="clear"></div><br />'; |
|
|
|
|
|
|
|
//javascript:register_friend(this) |
|
|
|
|
|
|
|
//var_dump($pending_invitations); |
|
|
|
|
|
|
|
echo '<div class="clear"></div><br />'; |
|
|
|
|
|
|
|
echo '<div id="social-profile-invitations" >'; |
|
|
|
|
|
|
|
if ($count_pending_invitations > 0) { |
|
|
|
|
|
|
|
echo '<div class="sectiontitle">'; |
|
|
|
|
|
|
|
echo api_convert_encoding(get_lang('PendingInvitations'),$charset,'UTF-8'); |
|
|
|
|
|
|
|
echo '</div><br />'; |
|
|
|
|
|
|
|
for ($i=0;$i<$count_pending_invitations;$i++) { |
|
|
|
|
|
|
|
//var_dump($invitations); |
|
|
|
|
|
|
|
echo '<div id="dpending_'.$pending_invitations[$i]['user_sender_id'].'" class="friend_invitations">'; |
|
|
|
|
|
|
|
echo '<div style="float:left;width:60px;" >'; |
|
|
|
|
|
|
|
echo '<img style="margin-bottom:5px;" src="'.$list_get_path_web[$i]['dir'].'/'.$list_get_path_web[$i]['file'].'" width="60px">'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<div style="padding-left:70px;">'; |
|
|
|
|
|
|
|
echo ' '.api_convert_encoding(substr($pending_invitations[$i]['content'],0,50),$charset,'UTF-8'); |
|
|
|
|
|
|
|
echo '<br />'; |
|
|
|
|
|
|
|
echo '<a id="btn_accepted_'.$pending_invitations[$i]['user_sender_id'].'" onclick="register_friend(this)" href="javascript:void(0)">'.get_lang('SocialAddToFriends').'</a>'; |
|
|
|
|
|
|
|
echo '<div id="id_response"> </div>'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<div class="clear"></div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//--Productions |
|
|
|
|
|
|
|
$production_list = UserManager::build_production_list($user_id); |
|
|
|
|
|
|
|
if (!empty($production_list )) { |
|
|
|
|
|
|
|
echo '<div class="clear"></div><br />'; |
|
|
|
|
|
|
|
echo '<div class="sectiontitle">'; |
|
|
|
|
|
|
|
echo get_lang('MyProductions'); |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<div class="rounded1">'; |
|
|
|
|
|
|
|
echo $production_list; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Images uploaded by course |
|
|
|
echo '</div>'; // close div tag .boxProfile |
|
|
|
$file_list = ''; |
|
|
|
|
|
|
|
if (is_array($course_list_code) && count($course_list_code)>0) { |
|
|
|
if ($show_full_profile) { |
|
|
|
foreach ($course_list_code as $course) { |
|
|
|
// MY GROUPS |
|
|
|
$file_list.= UserManager::get_user_upload_files_by_course($user_id,$course['code']); |
|
|
|
$results = GroupPortalManager::get_groups_by_user(api_get_user_id(), 0); |
|
|
|
|
|
|
|
$grid_my_groups = array(); |
|
|
|
|
|
|
|
$max_numbers_of_group = 4; |
|
|
|
|
|
|
|
if (is_array($results) && count($results) > 0) { |
|
|
|
|
|
|
|
$i = 1; |
|
|
|
|
|
|
|
foreach ($results as $result) { |
|
|
|
|
|
|
|
if ($i > $max_numbers_of_group) break; |
|
|
|
|
|
|
|
$id = $result['id']; |
|
|
|
|
|
|
|
$url_open = '<a href="groups.php?id='.$id.'">'; |
|
|
|
|
|
|
|
$url_close = '</a>'; |
|
|
|
|
|
|
|
$icon = ''; |
|
|
|
|
|
|
|
$name = strtoupper(cut($result['name'],20,true)); |
|
|
|
|
|
|
|
if ($result['relation_type'] == GROUP_USER_PERMISSION_ADMIN) { |
|
|
|
|
|
|
|
$icon = Display::return_icon('admin_star.png', get_lang('Admin'), array('style'=>'vertical-align:middle;width:16px;height:16px;')); |
|
|
|
|
|
|
|
} elseif ($result['relation_type'] == GROUP_USER_PERMISSION_MODERATOR) { |
|
|
|
|
|
|
|
$icon = Display::return_icon('moderator_star.png', get_lang('Moderator'), array('style'=>'vertical-align:middle;width:16px;height:16px;')); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
$count_users_group = count(GroupPortalManager::get_all_users_by_group($id)); |
|
|
|
|
|
|
|
if ($count_users_group == 1 ) { |
|
|
|
|
|
|
|
$count_users_group = $count_users_group.' '.get_lang('Member'); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
$count_users_group = $count_users_group.' '.get_lang('Members'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$picture = GroupPortalManager::get_picture_group($result['id'], $result['picture_uri'],80); |
|
|
|
|
|
|
|
$item_name = '<div class="box_shared_profile_group_title">'.strtoupper($name). $icon.'</div>'; |
|
|
|
|
|
|
|
$item_description = '<div class="box_shared_profile_group_description">'.get_lang('DescriptionGroup').'<p>'.cut($result['description'],120,true).'</p></div>'; |
|
|
|
|
|
|
|
$result['picture_uri'] = '<div class="box_shared_profile_group_image"><img class="imageGroups" src="'.$picture['file'].'" hspace="4" height="50" border="2" align="left" width="50" /></div>'; |
|
|
|
|
|
|
|
$item_actions = '<div class="box_shared_profile_group_actions"><a href="groups.php?id='.$id.'">'.get_lang('SeeMore').$url_close.'</div>'; |
|
|
|
|
|
|
|
$grid_my_groups[]= array($item_name,$url_open.$result['picture_uri'].$url_close, $item_description.$item_actions); |
|
|
|
|
|
|
|
$i++; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (!empty($file_list)) { |
|
|
|
if (count($grid_my_groups) > 0) { |
|
|
|
echo '<div class="clear"></div><br />'; |
|
|
|
echo '<div class="boxProfile">'; |
|
|
|
echo '<div class="sectiontitle">'; |
|
|
|
echo '<div class="groupPost">'; |
|
|
|
echo get_lang('ImagesUploaded'); |
|
|
|
echo '<div>'.Display::return_icon('content-post-group1.jpg').'</div>'; |
|
|
|
echo '</div><br />'; |
|
|
|
echo '<div class="contentPostGroup">'; |
|
|
|
echo '</br><div class="social-content-information">'; |
|
|
|
echo '<div><h3>'.get_lang('MyGroups').'</h3></div>'; |
|
|
|
echo $file_list; |
|
|
|
$count_groups = 0; |
|
|
|
|
|
|
|
if (count($results) == 1 ) { |
|
|
|
|
|
|
|
$count_groups = count($results).' '.get_lang('Group'); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
$count_groups = count($results).' '.get_lang('Groups'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
echo '<div>'.$count_groups.'</div>'; |
|
|
|
|
|
|
|
if ($i > $max_numbers_of_group) { |
|
|
|
|
|
|
|
echo '<div class="box_shared_profile_group_actions"><a href="groups.php?view=mygroups">'.get_lang('SeeAllMyGroups').'</a></div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
Display::display_sortable_grid('shared_profile_mygroups', array(), $grid_my_groups, array('hide_navigation'=>true, 'per_page' => 2), $query_vars, false, array(true, true, true,false)); |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; |
|
|
|
} |
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} |
|
|
|
//loading this information |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//-- Competences |
|
|
|
// COURSES LIST |
|
|
|
if (!empty($user_info['competences']) || !empty($user_info['diplomas']) || !empty($user_info['openarea']) || !empty($user_info['teach']) ) { |
|
|
|
if ($show_full_profile) { |
|
|
|
echo '<div class="clear"></div>'; |
|
|
|
if ( is_array($list) ) { |
|
|
|
echo '<div class="sectiontitle">'; |
|
|
|
echo '<div class="boxProfile">'; |
|
|
|
echo get_lang('MoreInformation'); |
|
|
|
echo '<div class="groupPost">'; |
|
|
|
echo '</div>'; |
|
|
|
echo '<div>'.Display::return_icon('content-post-group1.jpg').'</div>'; |
|
|
|
} |
|
|
|
echo '<div class="contentPostGroup">'; |
|
|
|
echo '<div class="social-content-competences">'; |
|
|
|
echo '<div><h3>'.api_ucfirst(get_lang('MyCourses')).'</h3></div>'; |
|
|
|
$cut_size = 220; |
|
|
|
echo '<div class="social-content-training">'; |
|
|
|
if (!empty($user_info['competences'])) { |
|
|
|
//Courses whithout sessions |
|
|
|
echo '<br />'; |
|
|
|
$old_user_category = 0; |
|
|
|
echo '<div class="social-background-content" style="width:100%;">'; |
|
|
|
$i=1; |
|
|
|
echo '<div class="social-actions-message">'.get_lang('MyCompetences').'</div>'; |
|
|
|
foreach($list as $key=>$value) { |
|
|
|
echo cut($user_info['competences'],$cut_size); |
|
|
|
if ( empty($value[2]) ) { //if out of any session |
|
|
|
|
|
|
|
echo $value[1]; |
|
|
|
|
|
|
|
//echo '<div id="loading'.$i.'"> </div>'; |
|
|
|
|
|
|
|
//class="social-profile-rounded maincourse" |
|
|
|
|
|
|
|
echo '<div id="social_content'.$i.'" style="background : #EFEFEF; padding:0px; ">'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
$i++; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$listActives = $listInactives = $listCourses = array(); |
|
|
|
|
|
|
|
foreach ( $list as $key=>$value ) { |
|
|
|
|
|
|
|
if ( $value['active'] ) { //if the session is still active (as told by get_logged_user_course_html()) |
|
|
|
|
|
|
|
$listActives[] = $value; |
|
|
|
|
|
|
|
} elseif ( !empty($value[2]) ) { //if there is a session but it is not active |
|
|
|
|
|
|
|
$listInactives[] = $value; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; |
|
|
|
echo '<br />'; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (!empty($user_info['diplomas'])) { |
|
|
|
// user feeds |
|
|
|
echo '<div class="social-background-content" style="width:100%;" >'; |
|
|
|
if ($show_full_profile) { |
|
|
|
echo '<div class="social-actions-message">'.get_lang('MyDiplomas').'</div>'; |
|
|
|
$user_feeds = SocialManager::get_user_feeds($user_id); |
|
|
|
echo cut($user_info['diplomas'],$cut_size); |
|
|
|
if (!empty($user_feeds )) { |
|
|
|
echo '</div>'; |
|
|
|
echo '<div class="boxProfile">'; |
|
|
|
echo '<br />'; |
|
|
|
echo '<div class="groupPost">'; |
|
|
|
} |
|
|
|
echo '<div>'.Display::return_icon('content-post-group1.jpg').'</div>'; |
|
|
|
if (!empty($user_info['openarea'])) { |
|
|
|
echo '<div class="contentPostGroup">'; |
|
|
|
echo '<div class="social-background-content" style="width:100%;" >'; |
|
|
|
echo '<div><h3>'.get_lang('RSSFeeds').'</h3></div>'; |
|
|
|
echo '<div class="social-actions-message">'.get_lang('MyPersonalOpenArea').'</div>'; |
|
|
|
echo '<div class="social-content-training">'.$user_feeds.'</div>'; |
|
|
|
echo cut($user_info['openarea'],$cut_size); |
|
|
|
//echo '<div class="clear"></div>'; |
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; |
|
|
|
echo '<br />'; |
|
|
|
echo '</div>'; |
|
|
|
} |
|
|
|
|
|
|
|
if (!empty($user_info['teach'])) { |
|
|
|
|
|
|
|
echo '<div class="social-background-content" style="width:100%;" >'; |
|
|
|
|
|
|
|
echo '<div class="social-actions-message">'.get_lang('MyTeach').'</div>'; |
|
|
|
|
|
|
|
echo cut($user_info['teach'],$cut_size); |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; |
|
|
|
echo '<br />'; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Load right plugin's |
|
|
|
|
|
|
|
//echo SocialManager::get_plugins(SOCIAL_RIGHT_PLUGIN); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
echo '<div class="clear"></div><br />'; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
echo '</div>'; // end of content section |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<div id="social-profile-container">'; |
|
|
|
//--Productions |
|
|
|
|
|
|
|
$production_list = UserManager::build_production_list($user_id); |
|
|
|
//------------------------------------- |
|
|
|
// Images uploaded by course |
|
|
|
// LEFT COLUMN |
|
|
|
$file_list = ''; |
|
|
|
|
|
|
|
if (is_array($course_list_code) && count($course_list_code)>0) { |
|
|
|
echo '<div id="social-profile-left">'; |
|
|
|
foreach ($course_list_code as $course) { |
|
|
|
|
|
|
|
$file_list.= UserManager::get_user_upload_files_by_course($user_id,$course['code']); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//--- User image |
|
|
|
$count_pending_invitations = 0; |
|
|
|
echo '<div class="social-content-image">'; |
|
|
|
if (!isset($_GET['u']) || (isset($_GET['u']) && $_GET['u']==api_get_user_id())) { |
|
|
|
echo '<div class="social-background-content" style="width:95%;" align="center">'; |
|
|
|
$pending_invitations = SocialManager::get_list_invitation_of_friends_by_user_id(api_get_user_id()); |
|
|
|
echo '<br/>'; |
|
|
|
$list_get_path_web=SocialManager::get_list_web_path_user_invitation_by_user_id(api_get_user_id()); |
|
|
|
|
|
|
|
$count_pending_invitations = count($pending_invitations); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if ($img_array['file'] != 'unknown.jpg') { |
|
|
|
echo '<div class="boxProfile">'; |
|
|
|
echo '<a class="thickbox" href="'.$big_image.'"><img src='.$img_array['dir'].$img_array['file'].' /> </a><br /><br />'; |
|
|
|
|
|
|
|
} else { |
|
|
|
if (!empty($production_list) || !empty($file_list) || $count_pending_invitations > 0) { |
|
|
|
echo '<img src='.$img_array['dir'].$img_array['file'].' /><br /><br />'; |
|
|
|
echo '<div class="boxProfileContent">'; |
|
|
|
} |
|
|
|
//Pending invitations |
|
|
|
echo '</div>'; |
|
|
|
if (!isset($_GET['u']) || (isset($_GET['u']) && $_GET['u']==api_get_user_id())) { |
|
|
|
echo '</div>'; |
|
|
|
if ($count_pending_invitations > 0) { |
|
|
|
echo '<br/>'; |
|
|
|
echo '<div>'.Display::return_icon('boxmygroups.jpg').'</div>'; |
|
|
|
|
|
|
|
echo '<div class="profileContent">'; |
|
|
|
$html_actions = ''; |
|
|
|
echo '<div><h3>'.api_convert_encoding(get_lang('PendingInvitations'),$charset,'UTF-8').'</h3></div>'; |
|
|
|
if ($user_id != api_get_user_id()) { |
|
|
|
for ($i=0;$i<$count_pending_invitations;$i++) { |
|
|
|
$html_actions = ' <a href="'.api_get_path(WEB_PATH).'main/messages/send_message_to_userfriend.inc.php?height=300&width=610&user_friend='.$user_id.'&view=profile&view_panel=1" class="thickbox" title="'.get_lang('SendMessage').'">'; |
|
|
|
echo '<div id="dpending_'.$pending_invitations[$i]['user_sender_id'].'" class="friend_invitations">'; |
|
|
|
$html_actions .= Display::return_icon('message_new.png').' '.get_lang('SendMessage').'</a><br />'; |
|
|
|
echo '<div style="float:left;width:60px;" >'; |
|
|
|
} |
|
|
|
echo '<img style="margin-bottom:5px;" src="'.$list_get_path_web[$i]['dir'].'/'.$list_get_path_web[$i]['file'].'" width="60px">'; |
|
|
|
//check if I already sent an invitation message |
|
|
|
echo '</div>'; |
|
|
|
$invitation_sent_list = SocialManager::get_list_invitation_sent_by_user_id(api_get_user_id()); |
|
|
|
echo '<div style="padding-left:70px;">'; |
|
|
|
|
|
|
|
echo ' '.api_convert_encoding(substr($pending_invitations[$i]['content'],0,50),$charset,'UTF-8'); |
|
|
|
if (is_array($invitation_sent_list) && is_array($invitation_sent_list[$user_id]) && count($invitation_sent_list[$user_id]) >0 ) { |
|
|
|
echo '<br />'; |
|
|
|
$html_actions .= '<a href="'.api_get_path(WEB_PATH).'main/social/invitations.php">'.get_lang('YouAlreadySentAnInvitation').'</a>'; |
|
|
|
echo '<a id="btn_accepted_'.$pending_invitations[$i]['user_sender_id'].'" onclick="register_friend(this)" href="javascript:void(0)">'.get_lang('SocialAddToFriends').'</a>'; |
|
|
|
} else { |
|
|
|
echo '<div id="id_response"> </div>'; |
|
|
|
if (!$show_full_profile) { |
|
|
|
echo '</div>'; |
|
|
|
$html_actions .= ' <a href="'.api_get_path(WEB_PATH).'main/messages/send_message_to_userfriend.inc.php?view_panel=2&height=260&width=610&user_friend='.$user_id.'" class="thickbox" title="'.get_lang('SendInvitation').'">'.Display :: return_icon('add_multiple_users.gif', get_lang('SocialInvitationToFriends')).' '.get_lang('SendInvitation').'</a>'; |
|
|
|
echo '</div>'; |
|
|
|
} |
|
|
|
echo '<div class="clear"></div>'; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!empty($html_actions )) { |
|
|
|
|
|
|
|
echo '<div class="actions" style="margin-right:5px;">'; |
|
|
|
|
|
|
|
echo $html_actions; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<br />'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Extra information |
|
|
|
|
|
|
|
if ($show_full_profile) { |
|
|
|
|
|
|
|
//-- Extra Data |
|
|
|
|
|
|
|
$t_uf = Database :: get_main_table(TABLE_MAIN_USER_FIELD); |
|
|
|
|
|
|
|
$t_ufo = Database :: get_main_table(TABLE_MAIN_USER_FIELD_OPTIONS); |
|
|
|
|
|
|
|
$extra_user_data = UserManager::get_extra_user_data($user_id); |
|
|
|
|
|
|
|
$extra_information = ''; |
|
|
|
|
|
|
|
if (is_array($extra_user_data) && count($extra_user_data)>0 ) { |
|
|
|
|
|
|
|
$extra_information = '<div class="sectiontitle">'; |
|
|
|
|
|
|
|
$extra_information .= get_lang('ExtraInformation'); |
|
|
|
|
|
|
|
$extra_information .= '</div><br />'; |
|
|
|
|
|
|
|
$extra_information .='<div class="social-content-information">'; |
|
|
|
|
|
|
|
$extra_information_value = ''; |
|
|
|
|
|
|
|
foreach($extra_user_data as $key=>$data) { |
|
|
|
|
|
|
|
// get display text, visibility and type from user_field table |
|
|
|
|
|
|
|
$field_variable = str_replace('extra_','',$key); |
|
|
|
|
|
|
|
$sql = "SELECT field_display_text,field_visible,field_type,id FROM $t_uf WHERE field_variable ='$field_variable'"; |
|
|
|
|
|
|
|
$res_field = Database::query($sql,__FILE__,__LINE__); |
|
|
|
|
|
|
|
$row_field = Database::fetch_row($res_field); |
|
|
|
|
|
|
|
$field_display_text = $row_field[0]; |
|
|
|
|
|
|
|
$field_visible = $row_field[1]; |
|
|
|
|
|
|
|
$field_type = $row_field[2]; |
|
|
|
|
|
|
|
$field_id = $row_field[3]; |
|
|
|
|
|
|
|
if ($field_visible == 1) { |
|
|
|
|
|
|
|
if (is_array($data)) { |
|
|
|
|
|
|
|
$extra_information_value .= '<strong>'.ucfirst($field_display_text).':</strong> '.implode(',',$data).'<br />'; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
if ($field_type == USER_FIELD_TYPE_DOUBLE_SELECT) { |
|
|
|
|
|
|
|
$id_options = explode(';',$data); |
|
|
|
|
|
|
|
$value_options = array(); |
|
|
|
|
|
|
|
// get option display text from user_field_options table |
|
|
|
|
|
|
|
foreach ($id_options as $id_option) { |
|
|
|
|
|
|
|
$sql = "SELECT option_display_text FROM $t_ufo WHERE id = '$id_option'"; |
|
|
|
|
|
|
|
$res_options = Database::query($sql,__FILE__,__LINE__); |
|
|
|
|
|
|
|
$row_options = Database::fetch_row($res_options); |
|
|
|
|
|
|
|
$value_options[] = $row_options[0]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$extra_information_value .= '<strong>'.ucfirst($field_display_text).':</strong> '.implode(' ',$value_options).'<br />'; |
|
|
|
|
|
|
|
} elseif($field_type == USER_FIELD_TYPE_TAG ) { |
|
|
|
|
|
|
|
$user_tags = UserManager::get_user_tags($user_id, $field_id); |
|
|
|
|
|
|
|
$tag_tmp = array(); |
|
|
|
|
|
|
|
foreach ($user_tags as $tags) { |
|
|
|
|
|
|
|
//$tag_tmp[] = $tags['tag']; |
|
|
|
|
|
|
|
$tag_tmp[] = '<a href="'.api_get_path(WEB_PATH).'main/social/search.php?q='.$tags['tag'].'">'.$tags['tag'].'</a>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (is_array($user_tags) && count($user_tags)>0) { |
|
|
|
|
|
|
|
$extra_information_value .= '<strong>'.ucfirst($field_display_text).':</strong> '.implode(', ',$tag_tmp).'<br />'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
if (!empty($data)) { |
|
|
|
|
|
|
|
$extra_information_value .= '<strong>'.ucfirst($field_display_text).':</strong> '.$data.'<br />'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
echo '</div>'; |
|
|
|
// if there are information to show |
|
|
|
|
|
|
|
if (!empty($extra_information_value)) { |
|
|
|
|
|
|
|
$extra_information .= $extra_information_value; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$extra_information .= '</div>'; |
|
|
|
|
|
|
|
$extra_information .= '<br /><br />'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if there are information to show |
|
|
|
|
|
|
|
if (!empty($extra_information_value)) |
|
|
|
|
|
|
|
echo $extra_information; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$results = GroupPortalManager::get_groups_by_user($user_id , 0); |
|
|
|
|
|
|
|
$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')); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
$picture = GroupPortalManager::get_picture_group($result['id'], $result['picture_uri'],80); |
|
|
|
|
|
|
|
$result['picture_uri'] = '<img class="imageGroups" src="'.$picture['file'].'" hspace="4" height="50" border="2" align="left" width="50" />'; |
|
|
|
|
|
|
|
$groups[]= array($url_open.$result['picture_uri'].$url_close, $url_open.$result['name'].$url_close); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
if (count($groups)> 0) { |
|
|
|
|
|
|
|
echo '<h2>'.get_lang('MyGroups').'</h2>'; |
|
|
|
|
|
|
|
Display::display_sortable_grid('profile', array(), $groups, array('hide_navigation'=>true, 'per_page' => 100), $query_vars, false, array(true, true, true,false)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---- My Agenda Items |
|
|
|
|
|
|
|
$my_agenda_items = show_simple_personal_agenda($user_id); |
|
|
|
|
|
|
|
if (!empty($my_agenda_items)) { |
|
|
|
|
|
|
|
echo '<div class="sectiontitle">'; |
|
|
|
|
|
|
|
echo get_lang('MyAgenda'); |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
$tbl_personal_agenda = Database :: get_user_personal_table(TABLE_PERSONAL_AGENDA); |
|
|
|
|
|
|
|
echo '<div class="social-content-agenda">'; |
|
|
|
|
|
|
|
echo '<div class="social-background-content">'; |
|
|
|
|
|
|
|
echo $my_agenda_items; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<br /><br />'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//-----Announcements |
|
|
|
|
|
|
|
$announcement_content = ''; |
|
|
|
|
|
|
|
$my_announcement_by_user_id=isset($_GET['u']) ? Security::remove_XSS($_GET['u']) : api_get_user_id(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach ($course_list_code as $course) { |
|
|
|
|
|
|
|
$content = get_all_annoucement_by_user_course($course['dbName'],$my_announcement_by_user_id); |
|
|
|
|
|
|
|
$course_info=api_get_course_info($course['code']); |
|
|
|
|
|
|
|
if (!empty($content)) { |
|
|
|
|
|
|
|
$announcement_content.= '<div class="social-background-content" style="width:100%">'; |
|
|
|
|
|
|
|
$announcement_content.= '<div class="actions">'.$course_info['name'].'</div>'; |
|
|
|
|
|
|
|
$announcement_content.= $content; |
|
|
|
|
|
|
|
$announcement_content.= '</div>'; |
|
|
|
|
|
|
|
$announcement_content.= '<br/>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!empty($announcement_content)) { |
|
|
|
|
|
|
|
echo '<div class="sectiontitle">'; |
|
|
|
|
|
|
|
echo get_lang('Announcements'); |
|
|
|
|
|
|
|
echo '</div><br/>'; |
|
|
|
|
|
|
|
echo '<div class="social-content-announcements">'; |
|
|
|
|
|
|
|
echo $announcement_content.'<br/>'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Load left plugin |
|
|
|
echo '<div>'.Display::return_icon('boxmygroups.jpg').'</div>'; |
|
|
|
//echo SocialManager::get_plugins(SOCIAL_LEFT_PLUGIN); |
|
|
|
echo '<div class="profileContent">'; |
|
|
|
|
|
|
|
//--Productions |
|
|
|
} |
|
|
|
$production_list = UserManager::build_production_list($user_id); |
|
|
|
echo '</div>'; |
|
|
|
if (!empty($production_list )) { |
|
|
|
|
|
|
|
echo '<div><h3>'.get_lang('MyProductions').'</h3></div>'; |
|
|
|
|
|
|
|
echo '<div class="rounded1">'; |
|
|
|
// CENTER COLUMN |
|
|
|
echo $production_list; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<div id="social-profile-content">'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//--- Basic Information |
|
|
|
|
|
|
|
echo '<div class="sectiontitle">'; |
|
|
|
|
|
|
|
echo get_lang('Information'); //class="social-profile-info" |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<div class="social-content-information">'; |
|
|
|
|
|
|
|
if ($show_full_profile) { |
|
|
|
|
|
|
|
echo '<div class="social-profile-info" >'; |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('UserName').'</dt> |
|
|
|
|
|
|
|
<dd>'. $user_info['username'].' </dd>'; |
|
|
|
|
|
|
|
if (!empty($user_info['firstname']) || !empty($user_info['lastname'])) |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('Name').'</dt> |
|
|
|
|
|
|
|
<dd>'. api_get_person_name($user_info['firstname'], $user_info['lastname']).'</dd>'; |
|
|
|
|
|
|
|
if (!empty($user_info['official_code'])) |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('OfficialCode').'</dt> |
|
|
|
|
|
|
|
<dd>'.$user_info['official_code'].'</dd>'; |
|
|
|
|
|
|
|
if (!empty($user_info['email'])) |
|
|
|
|
|
|
|
if (api_get_setting('show_email_addresses')=='true') |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('Email').'</dt> |
|
|
|
|
|
|
|
<dd>'.$user_info['email'].'</dd>'; |
|
|
|
|
|
|
|
if (!empty($user_info['phone'])) |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('Phone').'</dt> |
|
|
|
|
|
|
|
<dd>'. $user_info['phone'].'</dd>'; |
|
|
|
|
|
|
|
echo '</dl>'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
echo '<div class="social-profile-info" >'; |
|
|
|
|
|
|
|
echo '<dl>'; |
|
|
|
|
|
|
|
if (!empty($user_info['firstname']) || !empty($user_info['lastname'])) |
|
|
|
|
|
|
|
echo '<dt>'.get_lang('Name').'</dt> |
|
|
|
|
|
|
|
<dd>'. api_get_person_name($user_info['firstname'], $user_info['lastname']).'</dd>'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<div class="clear"></div><br />'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// COURSES LIST |
|
|
|
|
|
|
|
if ($show_full_profile) { |
|
|
|
|
|
|
|
//print_r($personal_course_list); |
|
|
|
|
|
|
|
//echo '<pre>'; |
|
|
|
|
|
|
|
if ( is_array($list) ) { |
|
|
|
|
|
|
|
echo '<div class="sectiontitle">'; |
|
|
|
|
|
|
|
echo api_ucfirst(get_lang('MyCourses')); |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<div class="social-content-training">'; |
|
|
|
|
|
|
|
//Courses whithout sessions |
|
|
|
|
|
|
|
$old_user_category = 0; |
|
|
|
|
|
|
|
$i=1; |
|
|
|
|
|
|
|
foreach($list as $key=>$value) { |
|
|
|
|
|
|
|
if ( empty($value[2]) ) { //if out of any session |
|
|
|
|
|
|
|
echo $value[1]; |
|
|
|
|
|
|
|
//echo '<div id="loading'.$i.'"> </div>'; |
|
|
|
|
|
|
|
//class="social-profile-rounded maincourse" |
|
|
|
|
|
|
|
echo '<div id="social_content'.$i.'" style="background : #EFEFEF; padding:0px; ">'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; |
|
|
|
$i++; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
// Images uploaded by course |
|
|
|
$listActives = $listInactives = $listCourses = array(); |
|
|
|
if (!empty($file_list)) { |
|
|
|
foreach ( $list as $key=>$value ) { |
|
|
|
echo '<div><h3>'.get_lang('ImagesUploaded').'</h3></div>'; |
|
|
|
if ( $value['active'] ) { //if the session is still active (as told by get_logged_user_course_html()) |
|
|
|
echo '<div class="social-content-information">'; |
|
|
|
$listActives[] = $value; |
|
|
|
echo $file_list; |
|
|
|
} elseif ( !empty($value[2]) ) { //if there is a session but it is not active |
|
|
|
echo '</div>'; |
|
|
|
$listInactives[] = $value; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
echo '</div>'; // close div tag .profileContent |
|
|
|
} |
|
|
|
echo '</div>'; // close div tag .boxprofileContent |
|
|
|
echo '</ul><br />'; |
|
|
|
} |
|
|
|
$user_feeds = SocialManager::get_user_feeds($user_id); |
|
|
|
if (!empty($user_info['competences']) || !empty($user_info['diplomas']) || !empty($user_info['openarea']) || !empty($user_info['teach']) ) { |
|
|
|
if (!empty($user_feeds )) { |
|
|
|
echo '<div class="boxProfileContent">'; |
|
|
|
echo '<div class="sectiontitle">'.get_lang('RSSFeeds').'</div>'; |
|
|
|
echo '<div>'.Display::return_icon('boxmygroups.jpg').'</div>'; |
|
|
|
echo '<div class="social-content-training">'; |
|
|
|
echo '<div class="profileContent">'; |
|
|
|
echo $user_feeds; |
|
|
|
echo '<div><h3>'.get_lang('MoreInformation').'</h3></div>'; |
|
|
|
echo '</div>'; |
|
|
|
echo '<div class="social-content-competences">'; |
|
|
|
echo '<div class="clear"></div><br />'; |
|
|
|
$cut_size = 220; |
|
|
|
echo '</div>'; |
|
|
|
if (!empty($user_info['competences'])) { |
|
|
|
} |
|
|
|
echo '<br />'; |
|
|
|
} |
|
|
|
echo '<div class="social-background-content" style="width:100%;">'; |
|
|
|
|
|
|
|
echo '<div class="social-actions-message"><strong>'.get_lang('MyCompetences').'</strong></div>'; |
|
|
|
//Load plugin center |
|
|
|
echo cut($user_info['competences'],$cut_size); |
|
|
|
//echo SocialManager::get_plugins(SOCIAL_CENTER_PLUGIN); |
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<br />'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!empty($user_info['diplomas'])) { |
|
|
|
|
|
|
|
echo '<div class="social-background-content" style="width:100%;" >'; |
|
|
|
|
|
|
|
echo '<div class="social-actions-message"><strong>'.get_lang('MyDiplomas').'</strong></div>'; |
|
|
|
|
|
|
|
echo cut($user_info['diplomas'],$cut_size); |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<br />'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (!empty($user_info['openarea'])) { |
|
|
|
|
|
|
|
echo '<div class="social-background-content" style="width:100%;" >'; |
|
|
|
|
|
|
|
echo '<div class="social-actions-message"><strong>'.get_lang('MyPersonalOpenArea').'</strong></div>'; |
|
|
|
|
|
|
|
echo cut($user_info['openarea'],$cut_size); |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<br />'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (!empty($user_info['teach'])) { |
|
|
|
|
|
|
|
echo '<div class="social-background-content" style="width:100%;" >'; |
|
|
|
|
|
|
|
echo '<div class="social-actions-message"><strong>'.get_lang('MyTeach').'</strong></div>'; |
|
|
|
|
|
|
|
echo cut($user_info['teach'],$cut_size); |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '<br />'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
|
|
|
|
//-------------------------- |
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; // close div tag .boxProfile |
|
|
|
echo '</div>'; |
|
|
|
} |
|
|
|
echo '</div>'; |
|
|
|
echo '</div>'; // close div tag .socialContentRight |
|
|
|
echo '</div>'; //from the main |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<form id="id_reload" name="id_reload" action="profile.php"> </form>'; |
|
|
|
echo '<form id="id_reload" name="id_reload" action="profile.php"> </form>'; |
|
|
|
|
|
|
|
|
|
|
|
Display :: display_footer(); |
|
|
|
Display :: display_footer(); |