You are here

function print_mail_mollom_form_list in Printer, email and PDF versions 6

Same name and namespace in other branches
  1. 7.2 print_mail/print_mail.module \print_mail_mollom_form_list()
  2. 7 print_mail/print_mail.module \print_mail_mollom_form_list()

Implementation of hook_nollom_form_list().

File

print_mail/print_mail.module, line 523
Displays Printer-friendly versions of Drupal pages.

Code

function print_mail_mollom_form_list() {
  $forms['print_mail_form'] = array(
    'title' => t('Send page form'),
    'entity' => 'print_mail',
  );
  return $forms;
}