You are here

function print_settings_default in Printer, email and PDF versions 5.2

Same name and namespace in other branches
  1. 5 print.module \print_settings_default()

Default values of the print_settings variable

8 calls to print_settings_default()
print_format_link in ./print.module
Auxiliary function to fill the Printer-friendly link attributes
print_generate_node in ./print.module
Outputs a printer-friendly page. Used for content types
print_help in ./print.module
Implementation of hook_help()
print_link in ./print.module
Implementation of hook_link().
print_link_alter in ./print.module
Implementation of hook_link_alter().

... See full list

File

./print.module, line 144
Display printer-friendly versions of Drupal pages

Code

function print_settings_default() {
  return array(
    'show_link' => 1,
    'show_sys_link' => 1,
    'book_link' => 1,
    'logo_url' => '',
    'css' => '',
    'urls' => 1,
    'comments' => 0,
    'newwindow' => 0,
    'sendtoprinter' => 0,
  );
}