You are here

function Messaging_Send_Method::get_info in Messaging 6.3

1 call to Messaging_Send_Method::get_info()
Messaging_Send_Method::get_callback in classes/messaging_method.class.inc
Get callback from method info

File

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

Class

Messaging_Send_Method
Sending method, implements all specific method functionality

Code

function get_info($property = NULL) {
  if ($property) {
    return isset($this->info[$property]) ? $this->info[$property] : NULL;
  }
  else {
    return $this->info;
  }
}