You are here

function Messaging_Method::get_name in Messaging 7

Get method name, may be overridden by info properties

1 call to Messaging_Method::get_name()
Messaging_Method::message_log in ./messaging.method.inc
Log message action

File

./messaging.method.inc, line 47
Drupal Messaging Framework - Send_Method class file

Class

Messaging_Method
Base class for all Incoming and Sending methods

Code

function get_name() {
  return $this
    ->method_info('name', $this
    ->get_title());
}