You are here

function Messaging_Method::get_info in Messaging 6.4

Get info property

6 calls to Messaging_Method::get_info()
Messaging_Send_Method::get_user_address in includes/messaging_method.class.inc
Get address for user account
Messaging_Send_Method::message_prepare in includes/messaging_method.class.inc
Message processing: Decide on queue, log, cron and send options, prepare parameters
Messaging_Send_Method::message_render in includes/messaging_method.class.inc
Renders full message with header and body
Messaging_Send_Method::message_user in includes/messaging_method.class.inc
Prepare message for specific user. Check availability, redirect, etc..
Messaging_Send_Method::send_address in includes/messaging_method.class.inc
Send message to address, use sending callback

... See full list

File

includes/messaging_method.class.inc, line 71
Drupal Messaging Framework - Send_Method class file

Class

Messaging_Method
Base class for all Incoming and Sending methods

Code

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