home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / includes / usercp_viewprofile.php < prev   
PHP Script  |  2004-07-13  |  11KB  |  244 lines

  1. <?php
  2. /***************************************************************************
  3.  *                           usercp_viewprofile.php
  4.  *                            -------------------
  5.  *   begin                : Saturday, Feb 13, 2001
  6.  *   copyright            : (C) 2001 The phpBB Group
  7.  *   email                : support@phpbb.com
  8.  *
  9.  *   $Id: usercp_viewprofile.php,v 1.5.2.2 2004/07/11 16:46:20 acydburn Exp $
  10.  *
  11.  *
  12.  ***************************************************************************/
  13.  
  14. /***************************************************************************
  15.  *
  16.  *   This program is free software; you can redistribute it and/or modify
  17.  *   it under the terms of the GNU General Public License as published by
  18.  *   the Free Software Foundation; either version 2 of the License, or
  19.  *   (at your option) any later version.
  20.  *
  21.  *
  22.  ***************************************************************************/
  23.  
  24. if ( !defined('IN_PHPBB') )
  25. {
  26.         die("Hacking attempt");
  27.         exit;
  28. }
  29.  
  30. if ( empty($HTTP_GET_VARS[POST_USERS_URL]) || $HTTP_GET_VARS[POST_USERS_URL] == ANONYMOUS )
  31. {
  32.         message_die(GENERAL_MESSAGE, $lang['No_user_id_specified']);
  33. }
  34. $profiledata = get_userdata(intval($HTTP_GET_VARS[POST_USERS_URL]));
  35.  
  36. $sql = "SELECT *
  37.         FROM " . RANKS_TABLE . "
  38.         ORDER BY rank_special, rank_min";
  39. if ( !($result = $db->sql_query($sql)) )
  40. {
  41.         message_die(GENERAL_ERROR, 'Could not obtain ranks information', '', __LINE__, __FILE__, $sql);
  42. }
  43. $ranksrow = array();
  44. while ( $row = $db->sql_fetchrow($result) )
  45. {
  46.         $ranksrow[] = $row;
  47. }
  48. $db->sql_freeresult($result);
  49.  
  50. //
  51. // Output page header and profile_view template
  52. //
  53. $template->set_filenames(array(
  54.         'body' => 'profile_view_body.tpl')
  55. );
  56. if (is_active("Forums")) {
  57.     make_jumpbox('viewforum.'.$phpEx);
  58. }
  59. //
  60. // Calculate the number of days this user has been a member ($memberdays)
  61. // Then calculate their posts per day
  62. //
  63. $regdate = $profiledata['user_regdate'];
  64. $nukedate = strtotime($regdate);
  65. $memberdays = max(1, round( ( time() - $nukedate ) / 86400 ));
  66. $posts_per_day = $profiledata['user_posts'] / $memberdays;
  67.  
  68. // Get the users percentage of total posts
  69. if ( $profiledata['user_posts'] != 0  )
  70. {
  71.         $total_posts = get_db_stat('postcount');
  72.         $percentage = ( $total_posts ) ? min(100, ($profiledata['user_posts'] / $total_posts) * 100) : 0;
  73. }
  74. else
  75. {
  76.         $percentage = 0;
  77. }
  78.  
  79. $avatar_img = '';
  80. if ( $profiledata['user_avatar_type'] && $profiledata['user_allowavatar'] )
  81. {
  82.         switch( $profiledata['user_avatar_type'] )
  83.         {
  84.                 case USER_AVATAR_UPLOAD:
  85.                         $avatar_img = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . '/' . $profiledata['user_avatar'] . '" alt="" border="0" />' : '';
  86.                         break;
  87.                 case USER_AVATAR_REMOTE:
  88.                         $avatar_img = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $profiledata['user_avatar'] . '" alt="" border="0" />' : '';
  89.                         break;
  90.                 case USER_AVATAR_GALLERY:
  91.                         $avatar_img = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . '/' . $profiledata['user_avatar'] . '" alt="" border="0" />' : '';
  92.                         break;
  93.         }
  94. }
  95.  
  96. $poster_rank = '';
  97. $rank_image = '';
  98. if ( $profiledata['user_rank'] )
  99. {
  100.         for($i = 0; $i < count($ranksrow); $i++)
  101.         {
  102.                 if ( $profiledata['user_rank'] == $ranksrow[$i]['rank_id'] && $ranksrow[$i]['rank_special'] )
  103.                 {
  104.                         $poster_rank = $ranksrow[$i]['rank_title'];
  105.                         $rank_image = ( $ranksrow[$i]['rank_image'] ) ? '<img src="' . $ranksrow[$i]['rank_image'] . '" alt="' . $poster_rank . '" title="' . $poster_rank . '" border="0" /><br />' : '';
  106.                 }
  107.         }
  108. }
  109. else
  110. {
  111.         for($i = 0; $i < count($ranksrow); $i++)
  112.         {
  113.                 if ( $profiledata['user_posts'] >= $ranksrow[$i]['rank_min'] && !$ranksrow[$i]['rank_special'] )
  114.                 {
  115.                         $poster_rank = $ranksrow[$i]['rank_title'];
  116.                         $rank_image = ( $ranksrow[$i]['rank_image'] ) ? '<img src="' . $ranksrow[$i]['rank_image'] . '" alt="' . $poster_rank . '" title="' . $poster_rank . '" border="0" /><br />' : '';
  117.                 }
  118.         }
  119. }
  120.  
  121. $temp_url = append_sid("privmsg.$phpEx?mode=post&" . POST_USERS_URL . "=" . $profiledata['user_id']);
  122. if (is_active("Private_Messages")) {
  123.     $pm_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_pm'] . '" alt="' . $lang['Send_private_message'] . '" title="' . $lang['Send_private_message'] . '" border="0" /></a>';
  124.     $pm = '<a href="' . $temp_url . '">' . $lang['Send_private_message'] . '</a>';
  125. }
  126.  
  127. if ( !empty($profiledata['user_viewemail']) || $userdata['user_level'] == ADMIN )
  128. {
  129.         $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $profiledata['user_id']) : 'mailto:' . $profiledata['user_email'];
  130.  
  131.         $email_img = '<a href="' . $email_uri . '"><img src="' . $images['icon_email'] . '" alt="' . $lang['Send_email'] . '" title="' . $lang['Send_email'] . '" border="0" /></a>';
  132.         $email = '<a href="' . $email_uri . '">' . $lang['Send_email'] . '</a>';
  133. }
  134. else
  135. {
  136.         $email_img = ' ';
  137.         $email = ' ';
  138. }
  139. if (( $profiledata['user-website'] == "http:///") || ( $profiledata['user_website'] == "http://")){
  140.     $profiledata['user_website'] =  "";
  141. }
  142. if (($profiledata['user_website'] != "" ) && (substr($profiledata['user_website'],0, 7) != "http://")) {
  143.     $profiledata['user_website'] = "http://".$profiledata['user_website'];
  144. }
  145.  
  146. $www_img = ( $profiledata['user_website'] ) ? '<a href="' . $profiledata['user_website'] . '" target="_userwww"><img src="' . $images['icon_www'] . '" alt="' . $lang['Visit_website'] . '" title="' . $lang['Visit_website'] . '" border="0" /></a>' : ' ';
  147. $www = ( $profiledata['user_website'] ) ? '<a href="' . $profiledata['user_website'] . '" target="_userwww">' . $profiledata['user_website'] . '</a>' : ' ';
  148.  
  149. if ( !empty($profiledata['user_icq']) )
  150. {
  151.         $icq_status_img = '<a href="http://wwp.icq.com/' . $profiledata['user_icq'] . '#pager"><img src="http://web.icq.com/whitepages/online?icq=' . $profiledata['user_icq'] . '&img=5" width="18" height="18" border="0" /></a>';
  152.         $icq_img = '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $profiledata['user_icq'] . '"><img src="' . $images['icon_icq'] . '" alt="' . $lang['ICQ'] . '" title="' . $lang['ICQ'] . '" border="0" /></a>';
  153.         $icq =  '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $profiledata['user_icq'] . '">' . $lang['ICQ'] . '</a>';
  154. }
  155. else
  156. {
  157.         $icq_status_img = ' ';
  158.         $icq_img = ' ';
  159.         $icq = ' ';
  160. }
  161.  
  162. $aim_img = ( $profiledata['user_aim'] ) ? '<a href="aim:goim?screenname=' . $profiledata['user_aim'] . '&message=Hello+Are+you+there?"><img src="' . $images['icon_aim'] . '" alt="' . $lang['AIM'] . '" title="' . $lang['AIM'] . '" border="0" /></a>' : ' ';
  163. $aim = ( $profiledata['user_aim'] ) ? '<a href="aim:goim?screenname=' . $profiledata['user_aim'] . '&message=Hello+Are+you+there?">' . $lang['AIM'] . '</a>' : ' ';
  164.  
  165. $msn_img = ( $profiledata['user_msnm'] ) ? $profiledata['user_msnm'] : ' ';
  166. $msn = $msn_img;
  167.  
  168. $yim_img = ( $profiledata['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&.src=pg"><img src="' . $images['icon_yim'] . '" alt="' . $lang['YIM'] . '" title="' . $lang['YIM'] . '" border="0" /></a>' : '';
  169. $yim = ( $profiledata['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&.src=pg">' . $lang['YIM'] . '</a>' : '';
  170.  
  171. $temp_url = append_sid("search.$phpEx?search_author=" . urlencode($profiledata['username']) . "&showresults=posts");
  172. $search_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_search'] . '" alt="' . $lang['Search_user_posts'] . '" title="' . $lang['Search_user_posts'] . '" border="0" /></a>';
  173. $search = '<a href="' . $temp_url . '">' . $lang['Search_user_posts'] . '</a>';
  174. #
  175. //
  176. // Generate page
  177. //
  178. $page_title = $lang['Viewing_profile'];
  179. include("includes/page_header.php");
  180. $profiledata['user_from'] = str_replace(".gif", "", $profiledata['user_from']);
  181.  
  182. $template->assign_vars(array(
  183.         'USERNAME' => $profiledata['username'],
  184.         'JOINED' => $profiledata['user_regdate'],
  185.         'POSTER_RANK' => $poster_rank,
  186.         'RANK_IMAGE' => $rank_image,
  187.         'POSTS_PER_DAY' => $posts_per_day,
  188.         'POSTS' => $profiledata['user_posts'],
  189.         'PERCENTAGE' => $percentage . '%',
  190.         'POST_DAY_STATS' => sprintf($lang['User_post_day_stats'], $posts_per_day),
  191.         'POST_PERCENT_STATS' => sprintf($lang['User_post_pct_stats'], $percentage),
  192.         'SEARCH_IMG' => $search_img,
  193.         'SEARCH' => $search,
  194.         'PM_IMG' => $pm_img,
  195.         'PM' => $pm,
  196.         'EMAIL_IMG' => $email_img,
  197.         'EMAIL' => $email,
  198.         'WWW_IMG' => $www_img,
  199.         'WWW' => $www,
  200.         'ICQ_STATUS_IMG' => $icq_status_img,
  201.         'ICQ_IMG' => $icq_img,
  202.         'ICQ' => $icq,
  203.         'AIM_IMG' => $aim_img,
  204.         'AIM' => $aim,
  205.         'MSN_IMG' => $msn_img,
  206.         'MSN' => $msn,
  207.         'YIM_IMG' => $yim_img,
  208.         'YIM' => $yim,
  209.  
  210.         'LOCATION' => ( $profiledata['user_from'] ) ? $profiledata['user_from'] : ' ',
  211.         'OCCUPATION' => ( $profiledata['user_occ'] ) ? $profiledata['user_occ'] : ' ',
  212.         'INTERESTS' => ( $profiledata['user_interests'] ) ? $profiledata['user_interests'] : ' ',
  213.         'AVATAR_IMG' => $avatar_img,
  214.  
  215.         'L_VIEWING_PROFILE' => sprintf($lang['Viewing_user_profile'], $profiledata['username']),
  216.         'L_ABOUT_USER' => sprintf($lang['About_user'], $profiledata['username']),
  217.         'L_AVATAR' => $lang['Avatar'],
  218.         'L_POSTER_RANK' => $lang['Poster_rank'],
  219.         'L_JOINED' => $lang['Joined'],
  220.         'L_TOTAL_POSTS' => $lang['Total_posts'],
  221.         'L_SEARCH_USER_POSTS' => sprintf($lang['Search_user_posts'], $profiledata['username']),
  222.         'L_CONTACT' => $lang['Contact'],
  223.         'L_EMAIL_ADDRESS' => $lang['Email_address'],
  224.         'L_EMAIL' => $lang['Email'],
  225.         'L_PM' => $lang['Private_Message'],
  226.         'L_ICQ_NUMBER' => $lang['ICQ'],
  227.         'L_YAHOO' => $lang['YIM'],
  228.         'L_AIM' => $lang['AIM'],
  229.         'L_MESSENGER' => $lang['MSNM'],
  230.         'L_WEBSITE' => $lang['Website'],
  231.         'L_LOCATION' => $lang['Location'],
  232.         'L_OCCUPATION' => $lang['Occupation'],
  233.         'L_INTERESTS' => $lang['Interests'],
  234.  
  235.         'U_SEARCH_USER' => append_sid("search.$phpEx?search_author=" . urlencode($profiledata['username'])),
  236.  
  237.         'S_PROFILE_ACTION' => append_sid("profile.$phpEx"))
  238. );
  239.  
  240. $template->pparse('body');
  241.  
  242. include("includes/page_tail.php");
  243.  
  244. ?>