1, 'show_sys_link' => 1, 'book_link' => 1, 'logo_url' => '', 'css' => '', 'urls' => 1, 'comments' => 0, 'newwindow' => 0, 'sendtoprinter' => 0);
}
/**
* Default values of the print_sourceurl_settings variable
*
* @return
* array with the values
*/
function print_sourceurl_settings_default() {
return array('enabled' => 1, 'date' => 0, 'forcenode' => 0);
}
/**
* Default values of the print_robot_settings variable
*
* @return
* array with the values
*/
function print_robot_settings_default() {
return array('noindex' => 1, 'nofollow' => 1, 'noarchive' => 0, 'nocache' => 0);
}
/**
* Implementation of hook_perm().
*/
function print_perm() {
return array('access print', 'administer print');
}
/**
* Implementation of hook_menu().
*/
function print_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array(
'path' => 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-friendly Pages'),
'description' => t('Adds a printer-friendly version link to content and administrative pages.'),
'callback' => 'drupal_get_form',
'callback arguments' => array('print_main_settings'),
'access' => user_access('administer print'),
);
}
return $items;
}
/**
* Implementation of hook_link().
*/
function print_link($type, $node = NULL, $teaser = FALSE) {
$print_settings = variable_get('print_settings', print_settings_default());
if (isset($node->type)) {
$node_type = $node->type;
$print_display = variable_get('print_display_'. $node->type, 1);
}
else {
$node_type = '';
$print_display = 1;
}
// No link is shown for several motives...
if ( !($teaser) && ($node_type != 'book') && (!isset($node->parent)) &&
!(module_exists('visibility_api') && visibility_api_access('print')) &&
($print_settings['show_link']) && user_access('access print') &&
(($type == 'comment' && variable_get('print_display_comment', 0)) ||
($type == 'node' && $print_display))) {
$links = array();
$format = theme('print_format_link');
$query_arr = $_GET;
if ($type == 'comment') {
$query_arr['comment'] = $node->cid;
}
$query = drupal_query_string_encode($query_arr, array('q'));
if (empty($query)) $query = NULL;
$links['print'] = array('href' => PRINT_PATH ."/". $node->nid,
'title' => $format['text'],
'attributes' => $format['attributes'],
'html' => $format['html'],
'query' => $query,
);
return $links;
}
else {
return;
}
}
/**
* Implementation of hook_link_alter().
*/
function print_link_alter(&$node, &$links) {
foreach ($links as $module => $link) {
if (strpos($module, 'book_printer') !== FALSE) {
$print_settings = variable_get('print_settings', print_settings_default());
if ($print_settings['book_link']) {
$format = theme('print_format_link');
$format['attributes']['title'] = $link['attributes']['title'];
$links[$module]['href'] = PRINT_PATH ."/". $link['href'];
$links[$module]['attributes'] = $format['attributes'];
}
}
}
}
/**
* Implementation of hook_help().
*/
function print_help($path) {
switch ($path) {
case 'admin/help#print':
// Return a line-break version of the module README
return filter_filter('process', 2, NULL, file_get_contents(drupal_get_path('module', 'print') ."/README.txt") );
}
$print_settings = variable_get('print_settings', print_settings_default());
if (($print_settings['show_link']) && ($print_settings['show_sys_link']) &&
!(module_exists('visibility_api') && visibility_api_access('print')) &&
user_access('access print') && (preg_match("/^node\//i", $path) == 0)) {
static $output = FALSE;
if ($output === FALSE) {
$output = TRUE;
return print_insert_link();
}
}
}
/**
* Implementation of hook_form_alter().
*/
function print_form_alter($form_id, &$form) {
// Add the node-type settings option to activate the printer-friendly version link
if ($form_id == 'node_type_form') {
$form['workflow']['print_display'] = array(
'#type' => 'checkbox',
'#title' => t('Show printer-friendly version link'),
'#default_value' => variable_get('print_display_'. $form['#node_type']->type, 1),
'#description' => t('Displays the link to a printer-friendly version of the content. Further configuration is available on the !settings.', array('!settings' => l(t('settings page'), 'admin/settings/print' ))),
);
}
elseif ($form_id == 'comment_admin_settings') {
$form['viewing_options']['print_display_comment'] = array(
'#type' => 'checkbox',
'#title' => t('Show printer-friendly version link in individual comments'),
'#default_value' => variable_get('print_display_comment', 0),
'#description' => t('Displays the link to a printer-friendly version of the comment. Further configuration is available on the !settings.', array('!settings' => l(t('settings page'), 'admin/settings/print' ))),
);
}
}
/**
* Auxiliary function to fill the Printer-friendly link attributes
*
* @return
* array of formatted attributes
*/
function _print_format_link_aux($type = 0, $text = '', $img = '', $title = '', $class = '') {
$print_settings = variable_get('print_settings', print_settings_default());
$robots_settings = variable_get('print_robot_settings', print_robot_settings_default());
$attributes = array('title' => $title,
'class' => $class,
);
switch ($print_settings['newwindow']) {
case 1:
$attributes['target'] = '_blank';
break;
case 2:
$attributes['onclick'] = 'window.open(this.href); return false';
break;
case 3:
$attributes['class'] .= ' '. variable_get('greybox_class_text', 'greybox');
break;
case 4:
$attributes['class'] .= ' thickbox';
break;
}
if (!empty($robots_settings['nofollow'])) {
$attributes['rel'] = 'nofollow';
}
if ($type >= 2) {
$img = '';
$html = TRUE;
switch ($type) {
case 2:
$text = $img;
break;
case 3:
$text = $img .' '. $text;
break;
}
}
else {
$html = FALSE;
}
return array('text' => $text,
'html' => $html,
'attributes' => $attributes,
);
}
/**
* Format the Printer-friendly link
*
* @return
* array of formatted attributes
* @ingroup themeable
*/
function theme_print_format_link() {
$print_settings = variable_get('print_settings', print_settings_default());
$text = t('Printer-friendly version');
$img = base_path() . drupal_get_path('module', 'print') .'/icons/print_icon.gif';
$title = t('Display a printer-friendly version of this page.');
$class = 'print-page';
$format = _print_format_link_aux($print_settings['show_link'], $text, $img, $title, $class);
return array('text' => $format['text'],
'html' => $format['html'],
'attributes' => $format['attributes'],
);
}
/**
* Define the strings displayed by the module in the printer-friendly template
*
* @return
* array with the used text strings
* @ingroup themeable
*/
function theme_print_text() {
return array('retrieved' => "",
'sourceURL' => "",
'published' => "",
'by' => "",
'created' => "",
'links' => "",
);
}
/**
* 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
* @return
* string with the HTML link to the printer-friendly page
*/
function print_insert_link($path = NULL) {
if (user_access('access print')) {
if ($path === NULL) {
$path = PRINT_PATH ."/". $_GET['q'];
$query = drupal_query_string_encode($_GET, array('q'));
if (empty($query)) {
$query = NULL;
}
}
$format = theme('print_format_link');
return ''. l($format['text'], $path, $format['attributes'], $query, NULL, TRUE, $format['html']) .'';
}
}