function notifications_template_info in Notifications 7
Get info about templates
Parameters
$type: String, the subscriptions type OPTIONAL
$field: String, a specific field to retrieve info from OPTIONAL
File
- ./
notifications.module, line 618 - Notifications module
Code
function notifications_template_info($type = NULL, $field = NULL) {
$types = notifications_info('notifications templates');
return messaging_array_info($types, $type, $field);
}