function maillog_maillog_title in Maillog / Mail Developer 7
Same name and namespace in other branches
- 6 maillog.module \maillog_maillog_title()
Title callback for a maillog record.
Parameters
array $maillog: A maillog record that is to be deleted with an 'id' value.
Return value
string The title of a specific message.
1 string reference to 'maillog_maillog_title'
- maillog_menu in ./
maillog.module - Implements hook_menu().
File
- ./
maillog.module, line 91 - Primary hook implementations for the Maillog module.
Code
function maillog_maillog_title(array $maillog) {
return $maillog['subject'];
}