function mail_logger_theme in Mail Logger 7
Same name and namespace in other branches
- 6 mail_logger.module \mail_logger_theme()
Implements hook_theme().
File
- ./
mail_logger.module, line 73 - Mail Logger module logs all outgoing mail that passes through the drupal_mail function.
Code
function mail_logger_theme() {
return array(
'mail_logger_read_mail' => array(
'variables' => array(
'mail' => NULL,
),
'file' => 'mail_logger.theme.inc',
),
);
}