******************************************************************** D R U P A L M O D U L E ******************************************************************** Name: Print module Author: Matt Westgate ******************************************************************** INSTALLATION: 1. Place the entire print directory into your Drupal modules/ directory. 2. Enable via: administer > modules 3. Configure via: administer > settings > print 4. To modify the template of printer friendly pages, simply edit the print.tpl.php file found in this directory. ******************************************************************** CUSTOMIZATION: - Though it is not recommended to open links in a new window you can change theme_print_link() in print.module if you really want to force it. It might be look like this: function theme_print_link($node) { $attr = array("target"=> "_blank"); return l(t('printer friendly page'),"node/$node->nid/print",$attr); }