function maillog_theme in Maillog / Mail Developer 7
Same name and namespace in other branches
- 6 maillog.module \maillog_theme()
Implements hook_theme().
File
- ./
maillog.module, line 145 - Primary hook implementations for the Maillog module.
Code
function maillog_theme() {
return array(
'maillog_header_from' => array(
'variables' => array(
'header_from' => NULL,
),
),
'maillog_header_to' => array(
'variables' => array(
'header_to' => NULL,
),
),
'maillog_header_reply_to' => array(
'variables' => array(
'header_reply_to' => NULL,
),
),
'maillog_header_all' => array(
'variables' => array(
'header_all' => NULL,
),
),
'maillog_body' => array(
'variables' => array(
'body' => NULL,
),
),
'maillog' => array(
'variables' => array(
'maillog' => NULL,
),
),
);
}