function Messaging_Method::get_title in Messaging 7
Get method title for administrator list
1 call to Messaging_Method::get_title()
- Messaging_Method::get_name in ./
messaging.method.inc - Get method name, may be overridden by info properties
File
- ./
messaging.method.inc, line 41 - Drupal Messaging Framework - Send_Method class file
Class
- Messaging_Method
- Base class for all Incoming and Sending methods
Code
function get_title() {
return $this
->method_info('title', t('Method'));
}