PRINT_PATH, 'title' => t('Printer-friendly'), 'callback' => 'print_controller_html', 'access' => user_access('access print'), 'type' => MENU_CALLBACK, ); $items[] = array( 'path' => 'admin/settings/print', 'title' => t('Printer, e-mail and PDF versions'), 'description' => t('Adds a printer-friendly version link to content and administrative pages.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('print_html_settings'), 'access' => user_access('administer print'), ); $items[] = array( 'path' => 'admin/settings/print/html', 'title' => t('Web page'), 'weight' => 1, 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items[] = array( 'path' => 'admin/settings/print/html/options', 'title' => t('Options'), 'weight' => 1, 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items[] = array( 'path' => 'admin/settings/print/html/strings', 'title' => t('Text strings'), 'callback' => 'drupal_get_form', 'callback arguments' => array('print_html_strings_settings'), 'access' => user_access('administer print'), 'weight' => 2, 'type' => MENU_LOCAL_TASK, ); $items[] = array( 'path' => 'admin/settings/print/common', 'title' => t('Settings'), 'callback' => 'drupal_get_form', 'callback arguments' => array('print_main_settings'), 'access' => user_access('administer print'), 'weight' => 10, 'type' => MENU_LOCAL_TASK, ); $items[] = array( 'path' => 'admin/settings/print/common/options', 'title' => t('Options'), 'weight' => 1, 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items[] = array( 'path' => 'admin/settings/print/common/strings', 'title' => t('Text strings'), 'callback' => 'drupal_get_form', 'callback arguments' => array('print_main_strings_settings'), 'access' => user_access('administer print'), 'weight' => 2, 'type' => MENU_LOCAL_TASK, ); } return $items; } /** * Implementation of hook_block(). */ function print_block($op = 'list', $delta = 0, $edit = array()) { switch ($op) { case 'list': $block[0]['info'] = t('Printer, e-mail and PDF versions'); $block[1]['info'] = t('Most printed'); return $block; break; case 'configure': return ''; case 'save': return; case 'view': switch ($delta) { case 0: $nid = preg_replace('!^node/!', '', $_GET['q']); if (is_numeric($nid)) { $node = node_load($nid); } else { $node = NULL; } $funcs = get_defined_functions(); $block['content'] = ''; foreach ($funcs['user'] as $func) { if (preg_match('!^print.*?_insert_link$!', $func)) { $link = $func(NULL, $node); if (!empty($link)) { $block['content'] .= $link; } } } break; case 1: $block['subject'] = t('Most printed'); $result = db_query_range("SELECT path FROM {print_page_counter} ORDER BY totalcount DESC", 0, 3); if (db_affected_rows()) { $block['content'] = '
'. t('Printer-friendly version') .'
', ); $form['print']['print_display'] = array( '#type' => 'checkbox', '#title' => t('Show link'), ); $form['print']['print_display_comment'] = array( '#type' => 'checkbox', '#title' => t('Show link in individual comments'), ); $form['print']['print_display_urllist'] = array( '#type' => 'checkbox', '#title' => t('Show Printer-friendly URLs list'), ); if ($form_id == 'node_type_form') { $form['print']['print_display']['#default_value'] = variable_get('print_display_'. $form['#node_type']->type, PRINT_TYPE_SHOW_LINK_DEFAULT); $form['print']['print_display_comment']['#default_value'] = variable_get('print_display_comment_'. $form['#node_type']->type, PRINT_TYPE_COMMENT_LINK_DEFAULT); $form['print']['print_display_urllist']['#default_value'] = variable_get('print_display_urllist_'. $form['#node_type']->type, PRINT_TYPE_URLLIST_DEFAULT); } else { $node = $form['#node']; $form['print']['print_display']['#default_value'] = isset($node->print_display) ? $node->print_display : variable_get('print_display_'. $node->type, PRINT_TYPE_SHOW_LINK_DEFAULT); $form['print']['print_display_comment']['#default_value'] = isset($node->print_display_comment) ? $node->print_display_comment : variable_get('print_display_comment_'. $node->type, PRINT_TYPE_COMMENT_LINK_DEFAULT); $form['print']['print_display_urllist']['#default_value'] = isset($node->print_display_urllist) ? $node->print_display_urllist : variable_get('print_display_urllist_'. $node->type, PRINT_TYPE_URLLIST_DEFAULT); } } } /** * Auxiliary function to assign the per-node settings to the node object fields * * @param $node * node to be modified */ function _print_set_node_fields(&$node) { if (isset($node->nid)) { $res = db_fetch_object(db_query("SELECT link, comments, url_list FROM {print_node_conf} WHERE nid = %d", $node->nid)); } else { $res = FALSE; } $node->print_display = $res ? intval($res->link) : variable_get('print_display_'. $node->type, PRINT_TYPE_SHOW_LINK_DEFAULT); $node->print_display_comment = $res ? intval($res->comments) : variable_get('print_display_comment_'. $node->type, PRINT_TYPE_COMMENT_LINK_DEFAULT); $node->print_display_urllist = $res ? intval($res->url_list) : variable_get('print_display_urllist_'. $node->type, PRINT_TYPE_URLLIST_DEFAULT); } /** * Auxiliary function to discover a given page's title * * @param $path * path of the page being identified * @return * string with the page's title */ function _print_get_title($path) { $path = drupal_get_normal_path($path); $nid = preg_replace('!^node/!', '', $path); if (is_numeric($nid)) { $res = db_fetch_object(db_query("SELECT title FROM {node} WHERE nid = %d", $nid)); return $res->title; } else { $res = db_fetch_object(db_query("SELECT title FROM {menu} WHERE path = '%s'", $path)); if ($res) { return $res->link_title; } else { return NULL; } } } /** * Update the print_node_conf table to reflect the given attributes * If updating to the default values, delete the record. * * @param $nid * value of the nid field (primary key) * @param $link * value of the link field (0 or 1) * @param $comments * value of the comments field (0 or 1) * @param $url_list * value of the url_list field (0 or 1) */ function _print_node_conf_modify($nid, $link, $comments, $url_list) { db_query("UPDATE {print_node_conf} SET link = %d, comments = %d, url_list = %d WHERE nid = %d", $link, $comments, $url_list, $nid); if (!db_affected_rows()) { @db_query("INSERT INTO {print_node_conf} (nid, link, comments, url_list) VALUES (%d, %d, %d, %d)", $nid, $link, $comments, $url_list); } } /** * Auxiliary function to fill the Printer-friendly link attributes * * @param $title * text to displayed by the link when hovering over it with the mouse * @param $class * class attribute to be used in the link * @param $new_window * if TRUE opens the target page in a new window * @return * array of formatted attributes */ function print_fill_attributes($title = '', $class = '', $new_window = FALSE) { $print_newwindow = variable_get('print_newwindow', PRINT_NEWWINDOW_DEFAULT); $print_robots_noindex = variable_get('print_robots_noindex', PRINT_ROBOTS_NOINDEX_DEFAULT); $attributes = array(); $attributes['title'] = $title; if (!empty($class)) { $attributes['class'] = $class; } if ($new_window) { switch ($print_newwindow) { case 0: $attributes['target'] = '_blank'; break; case 1: $attributes['onclick'] = 'window.open(this.href); return false'; break; } } if (!empty($print_robots_noindex)) { $attributes['rel'] = 'nofollow'; } return $attributes; } /** * Auxiliary function to set the link text and html flag * * @param $type * type of link: 0 or 1 for a text-only link, 2 for icon-only and 3 for * both text and icon * @param $text * text to be displayed on the link to the printer-friendly page * @param $img * path to the icon file * @return * array with the link text and html flag */ function _print_format_link_aux($type = 0, $text = '', $img = '') { if ($type >= 2) { $html = TRUE; switch ($type) { case 2: $text = theme('image', $img, $text, $text, array('class' => 'print-icon')); break; case 3: $text = theme('image', $img, $text, $text, array('class' => 'print-icon print-icon-margin')) . $text; break; } } else { $html = FALSE; } return array('text' => $text, 'html' => $html, ); } /** * Format the Printer-friendly link * * @return * array of formatted attributes * @ingroup themeable */ function theme_print_format_link() { $print_html_link_class = variable_get('print_html_link_class', PRINT_HTML_LINK_CLASS_DEFAULT); $print_html_new_window = variable_get('print_html_new_window', PRINT_HTML_NEW_WINDOW_DEFAULT); $print_html_show_link = variable_get('print_html_show_link', PRINT_HTML_SHOW_LINK_DEFAULT); $print_html_link_text = filter_xss(variable_get('print_html_link_text', t('Printer-friendly version'))); $img = drupal_get_path('module', 'print') .'/icons/print_icon.gif'; $title = t('Display a printer-friendly version of this page.'); $class = strip_tags($print_html_link_class); $new_window = $print_html_new_window; $format = _print_format_link_aux($print_html_show_link, $print_html_link_text, $img); return array('text' => $format['text'], 'html' => $format['html'], 'attributes' => print_fill_attributes($title, $class, $new_window), ); } /** * Auxiliary function to display a formatted Printer-friendly link * * Function made available so that developers may call this function from * their defined pages/blocks. * * @param $path * path of the original page (optional). If not specified, the current URL * is used * @param $node * an optional node object, to be used in defining the path, if used, the * path argument is irrelevant * @return * string with the HTML link to the printer-friendly page */ function print_insert_link($path = NULL, $node = NULL) { if ($node !== NULL) { $nid = $node->nid; $path = 'node/'. $nid; $allowed_type = print_link_allowed(array('node' => $node)); } else { if ($path === NULL) { $nid = preg_replace('!^node/!', '', $_GET['q']); $path = $_GET['q']; } else { $nid = NULL; } $allowed_type = print_link_allowed(array('path' => $path)); } if ($allowed_type) { if ($nid !== NULL) { if ($allowed_type === PRINT_ALLOW_BOOK_LINK) { $path = 'book/export/html/'. $nid; } else { if (variable_get('print_html_link_use_alias', PRINT_HTML_LINK_USE_ALIAS_DEFAULT)) { $path = drupal_get_path_alias($path); } else { $path = $nid; } } $path = PRINT_PATH .'/'. $path; $query = print_query_string_encode($_GET, array('q')); if (empty($query)) { $query = NULL; } } else { $query = NULL; } drupal_add_css(drupal_get_path('module', 'print') .'/css/printlinks.css'); $format = theme('print_format_link'); return ''. l($format['text'], $path, $format['attributes'], $query, NULL, TRUE, $format['html']) .''; } else { return FALSE; } } /** * Check if a path matches any pattern in a set of patterns. * * @param $path * The path to match. * @param $patterns * String containing a set of patterns separated by \n, \r or \r\n. * * @return * Boolean value: TRUE if the path matches a pattern, FALSE otherwise. */ function _print_match_path($path, $patterns) { static $regexps; if (!isset($regexps[$patterns])) { $regexps[$patterns] = '/^('. preg_replace(array('/(\r\n?|\n)/', '/\\\\\*/', '/(^|\|)\\\\