function mail_logger_theme in Mail Logger 6
Same name and namespace in other branches
- 7 mail_logger.module \mail_logger_theme()
Implementation of hook_theme().
File
- ./
mail_logger.module, line 53 - 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(
'arguments' => array(
'mlid' => NULL,
),
),
);
}