function print_mail_theme in Printer, email and PDF versions 7.2
Same name and namespace in other branches
- 6 print_mail/print_mail.module \print_mail_theme()
- 7 print_mail/print_mail.module \print_mail_theme()
- 5.x print_mail/print_mail.module \print_mail_theme()
Implements hook_theme().
File
- print_mail/
print_mail.module, line 52 - Displays Printer-friendly versions of Drupal pages.
Code
function print_mail_theme() {
return array(
'print_mail_form' => array(
'render element' => 'form',
'file' => 'print_mail.inc',
),
'print_mail_sendlink_html' => array(
'variables' => array(
'params' => NULL,
),
'file' => 'print_mail.inc',
),
'print_mail_sendlink_plain' => array(
'variables' => array(
'params' => NULL,
),
'file' => 'print_mail.inc',
),
);
}