\n"; echo " ".tra("Inbox")."\n"; echo " | ".tra("Write")."\n"; echo "\n"; } function pm_create_new($error = null) { page_head(tra("Send private message")); if (post_str("preview", true) == tra("Preview")) { $options = new output_options; echo "
\n"; echo "
".tra("Preview")."
\n"; echo output_transform(post_str("content", true), $options); echo "
\n"; } global $logged_in_user; $replyto = get_int("replyto", true); $userid = get_int("userid", true); $subject = null; $content = null; if ($replyto) { $message = BoincPrivateMessage::lookup_id($replyto); if (!$message || $message->userid != $logged_in_user->id) { error_page("no such message"); } $content = "[quote]".$message->content."[/quote]\n"; $userid = $message->senderid; $user = BoincUser::lookup_id($userid); if ($user != null) { $writeto = $userid." (".$user->name.")"; } $subject = $message->subject; if (substr($subject, 0, 3) != "re:") { $subject = "re: ".$subject; } } elseif ($userid) { $user = BoincUser::lookup_id($userid); if ($user) { $writeto = $userid." (".$user->name.")"; } } else { $writeto = post_str("to", true); $subject = stripslashes(post_str("subject", true)); $content = stripslashes(post_str("content", true)); } $content = htmlspecialchars($content); $subject = htmlspecialchars($subject); if ($error != null) { echo "
".$error."
\n"; } echo "
\n"; echo "\n"; echo form_tokens($logged_in_user->authenticator); start_table(); row2(tra("To")."
".tra("User IDs or unique usernames, separated with commas")."", "" ); row2(tra("Subject"), ""); row2(tra("Message")."".html_info()."", "" ); echo " \n"; end_table(); page_tail(); exit(); } function pm_send($to, $subject, $content) { global $logged_in_user; $userid = $to->id; $senderid = $logged_in_user->id; $sql_subject = mysql_real_escape_string($subject); $sql_content = mysql_real_escape_string($content); $to_user = BoincUser::lookup_id($userid); BoincForumPrefs::lookup($to_user); $send_email = false; if ($to_user->prefs->pm_notification) $send_email = true; BoincPrivateMessage::insert("(userid, senderid, date, subject, content) VALUES ($userid, $senderid, UNIX_TIMESTAMP(), '$sql_subject', '$sql_content')"); if ($send_email) { $message = " You have received a new private message at ".PROJECT.". From: $logged_in_user->name (ID $logged_in_user->id) Subject: $subject $content -------------------------- To delete or respond to this message, visit: ".URL_BASE."pm.php To disable email delivery of private messages, visit: ".URL_BASE."edit_forum_preferences_form.php Do not reply to this message. " ; send_email($to, "[".PROJECT."] private message", $message); } } function pm_count($userid, $duration) { $time = time() - $duration; return BoincPrivateMessage::count("senderid=$userid AND date>$time"); } function check_pm_count($userid) { if ((pm_count($userid, 60) >= 2) || (pm_count($userid, 600) >= 5) || (pm_count($userid, 3600) >= 15) || (pm_count($userid, 86400) >= 50)) { error_page(tra("You are not allowed to send privates messages so often. Please wait some time before sending more messages.")); } } function pm_notification($user) { $output = ""; $unread = BoincPrivateMessage::count("userid=$user->id AND opened=0"); $output .= "".tra("Inbox").""; if ($unread) { $output .= " ($unread ".tra("unread").")\n"; } $output .= " | ".tra("Write")."\n"; return $output; } function pm_email_remind($user) { if (!$user->prefs->pm_notification) { return "
For email notification, edit community prefs "; } return ""; } $cvs_version_tracker[]="\$Id: pm.inc 14019 2007-11-01 23:04:39Z davea $"; ?>