You are here

function print_robot_settings_default in Printer, email and PDF versions 5

Same name and namespace in other branches
  1. 5.2 print.module \print_robot_settings_default()
2 calls to print_robot_settings_default()
print_main_settings in ./print.module
_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 103
Display printer friendly versions of nodes (except books)

Code

function print_robot_settings_default() {
  return array(
    'noindex' => 1,
    'nofollow' => 1,
    'noarchive' => 0,
    'nocache' => 0,
  );
}