1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- $language_file = array('registration','messages','userInfo','admin');
- require ('../inc/global.inc.php');
- require_once (api_get_path(CONFIGURATION_PATH).'profile.conf.php');
- include_once (api_get_path(LIBRARY_PATH).'fileManage.lib.php');
- include_once (api_get_path(LIBRARY_PATH).'fileUpload.lib.php');
- include_once (api_get_path(LIBRARY_PATH).'image.lib.php');
- require_once (api_get_path(LIBRARY_PATH).'usermanager.lib.php');
- require_once '../inc/lib/social.lib.php';
- $this_section = SECTION_MYPROFILE;
- $_SESSION['this_section']=$this_section;
- //$list_path_friends=array();
- $request=api_is_xml_http_request();
- $language_variable=($request===true) ? api_convert_encoding(get_lang('Contacts'),'UTF-8',$charset) : get_lang('Contacts');
- //api_display_tool_title($language_variable);
- $user_id=api_get_user_id();
- $image_path = UserManager::get_user_picture_path_by_id ($user_id,'web',false,true);
- ?>
- <div align="center" >
- <table width="100%" border="0" cellpadding="0" cellspacing="0" class="social-content-table">
- <tr>
- <td width="100%" height="20" valign="top">
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="100%" height="20" valign="top"><?php
- echo ' Dokeos - ';
- $user_id=api_get_user_id();
- $user_info=api_get_user_info($user_id);
- echo $name_user=api_convert_encoding($user_info['firstName'].' '.$user_info['lastName'],'UTF-8',$charset) ;
- ?></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td height="25" valign="top">
- <table width="100%" border="0" cellpadding="0" cellspacing="0" class="social-subtitle-search">
- <tr>
- <td width="100%" height="25" valign="top" class="social-align-box"> <?php echo api_convert_encoding(get_lang('Search'),'UTF-8',$charset) .' : '; ?><input class="social-search-image" type="text" class="search-image" id="id_search_image" name="id_search_image" value="" onkeyup="search_image_social(this)" /></td>
- </tr>
- </table></td>
- </tr>
- <tr>
- <td height="175" valign="top">
- <table width="100%" border="0" cellpadding="0" cellspacing="0" >
- <tr>
- <td width="100%" height="22" valign="top">
- <table width="100%" border="0" cellpadding="0" cellspacing="0" class="social-align-box">
- <tr>
- <td width="100%" height="22" valign="top"> <?php echo api_convert_encoding(get_lang('ContactsList'),'UTF-8',$charset); ?></td>
- </tr>
- </table></td>
- </tr>
- <tr>
- <td height="153" valign="top">
- <?php
- echo '<div id="div_content_table">';
- require_once 'show_search_image.inc.php';
- echo '</div>';
-
- ?>
- </td>
- </tr>
- </table></td>
- </tr>
- </table>
- </div>
|