You are here

function print_content_extra_fields in Printer, email and PDF versions 5.x

Same name and namespace in other branches
  1. 6 print.module \print_content_extra_fields()

Implementation of hook_content_extra_fields().

File

./print.module, line 471
Displays Printer-friendly versions of Drupal pages.

Code

function print_content_extra_fields($type_name) {
  $fields['print'] = array(
    'label' => t('Printer, e-mail and PDF versions'),
    'description' => t('Print module form.'),
    'weight' => PRINT_TYPE_FIELDS_WEIGHT,
  );
  return $fields;
}