function Messaging_Destination::index in Messaging 7
Same name and namespace in other branches
- 6.4 includes/messaging_destination.class.inc \Messaging_Destination::index()
Get unique index for this destination
1 call to Messaging_Destination::index()
1 method overrides Messaging_Destination::index()
- Messaging_User_Destination::index in ./
messaging.destination.inc - Get unique index for this destination
File
- ./
messaging.destination.inc, line 303 - Drupal Messaging Framework - Default class file
Class
- Messaging_Destination
- Message destination class
Code
function index() {
return $this->type . ':' . $this->address;
}