You are here

function messaging_template_type_info in Messaging 6.4

Get template type information. It will try to retrieve just this type

Parameters

$type: Template type name

$property: Optional property to retrieve

$getall:

File

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

Code

function messaging_template_type_info($type = NULL, $property = NULL) {
  $info =& messaging_static(__FUNCTION__);
  if (!isset($info)) {
    $info = module_invoke_all('messaging', 'message groups');
  }
  return messaging_array_info($info, $type, $property);
}