You are here

public function Messaging_Send_Method::get_callback in Messaging 6.3

Get callback from method info

3 calls to Messaging_Send_Method::get_callback()
Messaging_Send_Method::send in classes/messaging_method.class.inc
Send message to destination by calling the method's send callback
Messaging_Send_Method::user_destination in classes/messaging_method.class.inc
Get destination for user
Messaging_Send_Method::__call in classes/messaging_method.class.inc
Magic function, invoking non existent methods

File

classes/messaging_method.class.inc, line 291
Drupal Messaging Framework - Send_Method class file

Class

Messaging_Send_Method
Sending method, implements all specific method functionality

Code

public function get_callback($type) {
  return $this
    ->get_info($type . ' callback');
}