function print_content_extra_fields in Printer, email and PDF versions 6
Same name and namespace in other branches
- 5.x print.module \print_content_extra_fields()
Implementation of hook_content_extra_fields().
File
- ./
print.module, line 530 - Displays Printer-friendly versions of Drupal pages.
Code
function print_content_extra_fields($type_name) {
$fields['print'] = array(
'label' => t('Printer, email and PDF versions'),
'description' => t('Print module form.'),
'weight' => PRINT_TYPE_FIELDS_WEIGHT,
);
return $fields;
}