function messaging_text_build in Messaging 6.4
Same name and namespace in other branches
- 6.2 messaging.module \messaging_text_build()
- 6.3 messaging.module \messaging_text_build()
Build a simple text with message subject and body
2 calls to messaging_text_build()
- messaging_sms_send_msg in messaging_sms/
messaging_sms.module - Send SMS message using the default gateway
- messaging_xmpp_send_msg in messaging_xmpp/
messaging_xmpp.module - Send message via the xmppframework
File
- includes/
text.inc, line 292 - Drupal Messaging Framework - Text filtering functions
Code
function messaging_text_build($message, $glue = ' ') {
return $message
->get_text($glue);
}