You are here

function Messaging_Destination::index in Messaging 6.4

Same name and namespace in other branches
  1. 7 messaging.destination.inc \Messaging_Destination::index()

Get unique index for this destination

1 call to Messaging_Destination::index()
Messaging_Destination::__toString in includes/messaging_destination.class.inc

File

includes/messaging_destination.class.inc, line 231
Drupal Messaging Framework - Default class file

Class

Messaging_Destination
Message destination class

Code

function index() {
  return $this->uid . ':' . $this->type . ':' . $this->address;
}