function messaging_pull_pending in Messaging 6.3
Same name and namespace in other branches
- 5 messaging.module \messaging_pull_pending()
- 6 messaging.module \messaging_pull_pending()
- 6.2 messaging.module \messaging_pull_pending()
Pull pending messages for given methods and user accounts
Each returned message will be an array with the following elements
- 'uid', destination uid
- 'sender', originating uid
- 'subject', message subject to be rendered
- 'body', message body to be rendered
Parameters
$method: Send method
$users: User id or array of user id's
$limit: Optional limit for number of messages
$delete: Optional whether to delete messages when fetching
Return value
array() Array of pending messages.
1 call to messaging_pull_pending()
- Messaging_API_Tests::testMessagingSendingAPI in tests/
messaging_api.test - Play with creating, retrieving, deleting a pair messages
File
- ./
messaging.module, line 316
Code
function messaging_pull_pending($method, $users = NULL, $limit = 0, $delete = TRUE) {
$params['method'] = $method;
$params['queue'] = 1;
if (isset($users)) {
$params['uid'] = $users;
}
$messages = messaging_store('get', $params);
// Not exactly delete but mark as sent
if ($messages && $delete) {
messaging_store('sent', array_keys($messages));
}
return $messages;
}