function _privatemsg_blocked_messages in Privatemsg 6.2
Static storage for blocked messages.
2 calls to _privatemsg_blocked_messages()
- privatemsg_form_reply in ./
privatemsg.pages.inc - Form builder function; Write a reply to a thread.
- _privatemsg_get_allowed_recipients in ./
privatemsg.pages.inc - Check if the current user is allowed to write these recipients.
File
- ./
privatemsg.pages.inc, line 479 - User menu callbacks for Privatemsg.
Code
function &_privatemsg_blocked_messages() {
static $blocked_messages = array();
return $blocked_messages;
}