friends.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. /* For licensing terms, see /chamilo_license.txt */
  3. /**
  4. * @package chamilo.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).'usermanager.lib.php';
  14. require_once api_get_path(LIBRARY_PATH).'social.lib.php';
  15. api_block_anonymous_users();
  16. if (api_get_setting('allow_social_tool') !='true') {
  17. api_not_allowed();
  18. }
  19. $this_section = SECTION_SOCIAL;
  20. //jquery thickbox already called from main/inc/header.inc.php
  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.png");
  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. </script>';
  73. $interbreadcrumb[]= array ('url' =>'profile.php','name' => get_lang('Social'));
  74. $interbreadcrumb[]= array ('url' =>'#','name' => get_lang('Friends'));
  75. Display :: display_header($tool_name, 'Groups');
  76. echo '<div id="social-content">';
  77. echo '<div id="social-content-left">';
  78. //this include the social menu div
  79. SocialManager::show_social_menu('friends');
  80. echo '</div>';
  81. echo '<div id="social-content-right">';
  82. $language_variable = api_xml_http_response_encode(get_lang('Contacts'));
  83. $user_id = api_get_user_id();
  84. $list_path_friends = array();
  85. $user_id = api_get_user_id();
  86. $name_search = isset($_POST['search_name_q']) ? $_POST['search_name_q']: null;
  87. $number_friends = 0;
  88. if (isset($name_search) && $name_search!='undefined') {
  89. $friends = SocialManager::get_friends($user_id,null,$name_search);
  90. } else {
  91. $friends = SocialManager::get_friends($user_id);
  92. }
  93. if (count($friends) == 0 ) {
  94. echo get_lang('NoFriendsInYourContactList').'<br /><br />';
  95. echo '<a href="search.php">'.get_lang('TryAndFindSomeFriends').'</a>';
  96. } else {
  97. ?>
  98. <div align="center" >
  99. <table width="100%" border="0" cellpadding="0" cellspacing="0" >
  100. <tr>
  101. <td height="25" valign="top">
  102. <table width="100%" border="0" cellpadding="0" cellspacing="0" >
  103. <tr>
  104. <td width="100%" valign="top" class="social-align-box">&nbsp;&nbsp;<?php echo get_lang('Search') .'&nbsp;&nbsp; : &nbsp;&nbsp;'; ?>
  105. <input class="social-search-image" type="text" id="id_search_image" name="id_search_image" value="" onkeyup="search_image_social(this)" />
  106. </td>
  107. </tr>
  108. </table></td>
  109. </tr>
  110. <tr>
  111. <td height="175" valign="top">
  112. <table width="100%" border="0" cellpadding="0" cellspacing="0" >
  113. <tr>
  114. <td height="153" valign="top">
  115. <?php
  116. $friend_html = '';
  117. $number_of_images = 8;
  118. $number_friends = count($friends);
  119. $j=0;
  120. echo '<div id ="social-content-right">';
  121. //echo '<div id="div_content_table" class="rounded_div" style="width:90%">';
  122. $friend_html.= '<table class="rounded_div" width="95%" border="0" cellpadding="0" cellspacing="0" bgcolor="" >';
  123. for ($k=0;$k<$number_friends;$k++) {
  124. $friend_html.='<tr><td valign="top">';
  125. while ($j<$number_friends) {
  126. if (isset($friends[$j])) {
  127. $friend = $friends[$j];
  128. $user_name = api_xml_http_response_encode($friend['firstName'].' '.$friend['lastName']);
  129. $friends_profile = SocialManager::get_picture_user($friend['friend_user_id'], $friend['image'], 92);
  130. $friend_html.='<div onMouseover="show_icon_delete(this)" onMouseout="hide_icon_delete(this)" class="image-social-content" id=div_'.$friends[$j]['friend_user_id'].'>';
  131. $friend_html.='<span><a href="profile.php?u='.$friend['friend_user_id'].'"><center><img src="'.$friends_profile['file'].'" style="height:60px;" id="imgfriend_'.$friend['friend_user_id'].'" title="'.$user_name.'" /></center></a></span>';
  132. $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>';
  133. }
  134. $j++;
  135. }
  136. $friend_html.='</td></tr>';
  137. }
  138. $friend_html.='<br/></table>';
  139. echo $friend_html;
  140. echo '</div>';
  141. ?>
  142. </td>
  143. </tr>
  144. </table></td>
  145. </tr>
  146. </table>
  147. </div>
  148. <?php
  149. }
  150. echo '</div>';
  151. echo '</div>';
  152. Display :: display_footer();