friends.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <?php
  2. /* For licensing terms, see /chamilo_license.txt */
  3. /**
  4. * @package dokeos.social
  5. * @author Julio Montoya <gugli100@gmail.com>
  6. */
  7. $language_file = array('userInfo');
  8. $cidReset=true;
  9. require '../inc/global.inc.php';
  10. require_once api_get_path(CONFIGURATION_PATH).'profile.conf.php';
  11. require_once api_get_path(LIBRARY_PATH).'fileManage.lib.php';
  12. require_once api_get_path(LIBRARY_PATH).'fileUpload.lib.php';
  13. require_once api_get_path(LIBRARY_PATH).'image.lib.php';
  14. require_once api_get_path(LIBRARY_PATH).'usermanager.lib.php';
  15. require_once api_get_path(LIBRARY_PATH).'social.lib.php';
  16. api_block_anonymous_users();
  17. $this_section = SECTION_SOCIAL;
  18. $htmlHeadXtra[] = '<script src="'.api_get_path(WEB_LIBRARY_PATH).'javascript/jquery.js" type="text/javascript" language="javascript"></script>'; //jQuery
  19. $htmlHeadXtra[] = '<script src="'.api_get_path(WEB_LIBRARY_PATH).'javascript/thickbox.js" type="text/javascript" language="javascript"></script>';
  20. $htmlHeadXtra[] = '<link rel="stylesheet" href="'.api_get_path(WEB_LIBRARY_PATH).'javascript/thickbox.css" type="text/css" media="projection, screen">';
  21. $htmlHeadXtra[] = '<script type="text/javascript">
  22. function delete_friend (element_div) {
  23. id_image=$(element_div).attr("id");
  24. user_id=id_image.split("_");
  25. if (confirm("'.get_lang('Delete', '').'")) {
  26. $.ajax({
  27. contentType: "application/x-www-form-urlencoded",
  28. type: "POST",
  29. url: "'.api_get_path(WEB_AJAX_PATH).'social.ajax.php?a=delete_friend",
  30. data: "delete_friend_id="+user_id[1],
  31. success: function(datos) {
  32. $("div#"+"div_"+user_id[1]).hide("slow");
  33. $("div#"+"div_"+user_id[1]).html("");
  34. clear_form ();
  35. }
  36. });
  37. }
  38. }
  39. function search_image_social(element_html) {
  40. name_search=$(element_html).attr("value");
  41. $.ajax({
  42. contentType: "application/x-www-form-urlencoded",
  43. type: "POST",
  44. url: "'.api_get_path(WEB_AJAX_PATH).'social.ajax.php?a=show_my_friends",
  45. data: "search_name_q="+name_search,
  46. success: function(datos) {
  47. $("div#div_content_table").html(datos);
  48. }
  49. });
  50. }
  51. function show_icon_delete(element_html) {
  52. elem_id=$(element_html).attr("id");
  53. id_elem=elem_id.split("_");
  54. ident="#img_"+id_elem[1];
  55. $(ident).attr("src","../img/delete.gif");
  56. $(ident).attr("alt","'.get_lang('Delete', '').'");
  57. $(ident).attr("title","'.get_lang('Delete', '').'");
  58. }
  59. function hide_icon_delete(element_html) {
  60. elem_id=$(element_html).attr("id");
  61. id_elem=elem_id.split("_");
  62. ident="#img_"+id_elem[1];
  63. $(ident).attr("src","../img/blank.gif");
  64. $(ident).attr("alt","");
  65. $(ident).attr("title","");
  66. }
  67. function clear_form () {
  68. $("input[@type=radio]").attr("checked", false);
  69. $("div#div_qualify_image").html("");
  70. $("div#div_info_user").html("");
  71. }
  72. function show_icon_edit(element_html) {
  73. ident="#edit_image";
  74. $(ident).show();
  75. }
  76. function hide_icon_edit(element_html) {
  77. ident="#edit_image";
  78. $(ident).hide();
  79. }
  80. </script>';
  81. $interbreadcrumb[]= array ('url' =>'profile.php','name' => get_lang('Social'));
  82. $interbreadcrumb[]= array ('url' =>'#','name' => get_lang('Friends'));
  83. Display :: display_header($tool_name, 'Groups');
  84. echo '<div id="social-content">';
  85. echo '<div id="social-content-left">';
  86. //this include the social menu div
  87. SocialManager::show_social_menu('friends');
  88. echo '</div>';
  89. echo '<div id="social-content-right">';
  90. $language_variable = api_xml_http_response_encode(get_lang('Contacts'));
  91. $user_id = api_get_user_id();
  92. $list_path_friends = array();
  93. $user_id = api_get_user_id();
  94. $name_search= Security::remove_XSS($_POST['search_name_q']);
  95. $number_friends = 0;
  96. if (isset($name_search) && $name_search!='undefined') {
  97. $friends = SocialManager::get_friends($user_id,null,$name_search);
  98. } else {
  99. $friends = SocialManager::get_friends($user_id);
  100. }
  101. if (count($friends) == 0 ) {
  102. echo get_lang('NoFriendsInYourContactList').'<br /><br />';
  103. echo '<a href="search.php">'.get_lang('TryAndFindSomeFriends').'</a>';
  104. } else {
  105. ?>
  106. <div align="center" >
  107. <table width="100%" border="0" cellpadding="0" cellspacing="0" >
  108. <tr>
  109. <td height="25" valign="top">
  110. <table width="100%" border="0" cellpadding="0" cellspacing="0" >
  111. <tr>
  112. <td width="100%" valign="top" class="social-align-box">&nbsp;&nbsp;<?php echo get_lang('Search') .'&nbsp;&nbsp; : &nbsp;&nbsp;'; ?>
  113. <input class="social-search-image" type="text" id="id_search_image" name="id_search_image" value="" onkeyup="search_image_social(this)" />
  114. </td>
  115. </tr>
  116. </table></td>
  117. </tr>
  118. <tr>
  119. <td height="175" valign="top">
  120. <table width="100%" border="0" cellpadding="0" cellspacing="0" >
  121. <tr>
  122. <td height="153" valign="top">
  123. <?php
  124. echo '<div class="social-box-container2">';
  125. echo '<div>'.Display::return_icon('content-post-group1.jpg').'</div>';
  126. echo '<div id="div_content_table" class="social-box-content2">';
  127. $friend_html = '';
  128. $number_of_images = 8;
  129. $number_friends = count($friends);
  130. if ($number_friends != 0) {
  131. $number_loop = ($number_friends/$number_of_images);
  132. $loop_friends = ceil($number_loop);
  133. $j=0;
  134. $friend_html.= '<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="" >';
  135. for ($k=0;$k<$loop_friends;$k++) {
  136. $friend_html.='<tr><td valign="top">';
  137. if ($j==$number_of_images) {
  138. $number_of_images=$number_of_images*2;
  139. }
  140. while ($j<$number_of_images) {
  141. if (isset($friends[$j])) {
  142. $friend = $friends[$j];
  143. $user_name = api_xml_http_response_encode($friend['firstName'].' '.$friend['lastName']);
  144. $friends_profile = SocialManager::get_picture_user($friend['friend_user_id'], $friend['image'], 92);
  145. $friend_html.='<div onMouseover="show_icon_delete(this)" onMouseout="hide_icon_delete(this)" class="image-social-content" id=div_'.$friends[$j]['friend_user_id'].'>';
  146. $friend_html.='<span><a href="profile.php?u='.$friend['friend_user_id'].'"><center><img src="'.$friends_profile['file'].'" style="height:60px;border:3pt solid #eee" id="imgfriend_'.$friend['friend_user_id'].'" title="'.$user_name.'" /></center></a></span>';
  147. $friend_html.='<img onclick="delete_friend (this)" id=img_'.$friend['friend_user_id'].' src="../img/blank.gif" alt="" title="" class="image-delete" /> <center class="friend">'.$user_name.'</center></div>';
  148. }
  149. $j++;
  150. }
  151. $friend_html.='</td></tr>';
  152. }
  153. $friend_html.='<br/></table>';
  154. }
  155. echo $friend_html;
  156. echo '</div>';
  157. echo '</div>';
  158. ?>
  159. </td>
  160. </tr>
  161. </table></td>
  162. </tr>
  163. </table>
  164. </div>
  165. <?php
  166. }
  167. echo '</div>';
  168. echo '</div>';
  169. Display :: display_footer();
  170. ?>