function print_robot_settings_default in Printer, email and PDF versions 5.2
Same name and namespace in other branches
- 5 print.module \print_robot_settings_default()
 
Default values of the print_robot_settings variable
2 calls to print_robot_settings_default()
- print_main_settings in ./
print.module  - Print module settings form
 - _print_robots_meta_generator in ./
print.module  - Generates a meta tag to tell robots what they may index based on module settings
 
File
- ./
print.module, line 158  - Display printer-friendly versions of Drupal pages
 
Code
function print_robot_settings_default() {
  return array(
    'noindex' => 1,
    'nofollow' => 1,
    'noarchive' => 0,
    'nocache' => 0,
  );
}