function Messaging_Message::get_subject in Messaging 6.4
Same name and namespace in other branches
- 7 messaging.message.inc \Messaging_Message::get_subject()
Get rendered subject
1 call to Messaging_Message::get_subject()
- Messaging_Message::get_text in includes/
messaging_message.class.inc - Build a simple text with message subject and body
File
- includes/
messaging_message.class.inc, line 629 - Drupal Messaging Framework - Message class file
Class
- Messaging_Message
- Message class
Code
function get_subject() {
$this
->render();
return $this->subject;
}