You are here

function messaging_template_method_fallback in Messaging 6.4

Get method fallback

@todo To be extended. For now it will just return 'default' for any other method

1 call to messaging_template_method_fallback()
messaging_template_message_part in messaging_template/messaging_template.module
Returns parts of messages, that may be formatted for each sending method

File

messaging_template/messaging_template.module, line 252
Drupal Messaging Framework - Messaging template

Code

function messaging_template_method_fallback($method) {
  return $method == 'default' ? NULL : 'default';
}