name"); } $row = sprintf("%s User since", $project); row2($row, time_str($user->create_time)); row2("Total credit", $user->total_credit); row2("Recent average credit", $user->expavg_credit); if ($user->teamid) { $result = mysql_query("select * from team where id = $user->teamid"); $team = mysql_fetch_object($result); row2("Team", "id>$team->name"); } else { row2("Team", "None"); } row2("Country", $user->country); if ($private) { row2("Computers", "View"); } else { row2("Computers", "id>View"); } } function show_user_profile_private($user) { if (is_valid_email_addr($user->email_addr)) { $email_text = $user->email_addr; } else { $email_text = "Verification pending"; } row1("Your account information"); row2("Email address
Edit", $email_text ); row2("Name", $user->name); row2("Country", $user->country); row2("Postal code", $user->postal_code); row2("", "Edit account info"); row2("General preferences", "View"); row2(PROJECT." preferences", "View"); } // show a summary of the user. // NOTE: This is intended to be shown only to that user. // it has info that other users aren't supposed to see function show_user_page_private($user) { start_table(); show_user_profile_private($user); show_user_stats($user, true); end_table(); } function user_table_start() { start_table(); echo " Name Recent average credit Total credit Country Participant since "; } function show_user_row($user) { echo " id>$user->name $user->expavg_credit $user->total_credit $user->country ".time_str($user->create_time)." \n"; } ?>