function Messaging_Message::get_destinations in Messaging 7
Get destinations for sending with current method
@todo Return only the ones not sent
File
- ./
messaging.message.inc, line 177 - Drupal Messaging Framework - Message class file
Class
- Messaging_Message
- Message class
Code
function get_destinations($method = NULL) {
$method = $method ? $method : $this->method;
return $this->destination[$method];
}