permalink_structure, -1, 1) != '/') {
$print_link_text = '/print';
} else {
$print_link_text = 'print';
}
$rewrite_rules2 = $wp_rewrite->generate_rewrite_rule($wp_rewrite->permalink_structure.$print_link_text);
array_splice($rewrite_rules2, 1);
$r_rule = array_keys($rewrite_rules2);
$r_rule = array_shift($r_rule);
$r_rule = str_replace('/trackback', '',$r_rule);
$r_link = array_values($rewrite_rules2);
$r_link = array_shift($r_link);
$r_link = str_replace('tb=1', 'print=1', $r_link);
$print_rules = array($r_rule => $r_link, '(.+)/printpage/?$' => 'index.php?pagename='.$wp_rewrite->preg_index(1).'&print=1');
$wp_rewrite->rules = $print_rules + $wp_rewrite->rules;
}
### Function: Print Public Variables
add_filter('query_vars', 'print_variables');
function print_variables($public_query_vars) {
$public_query_vars[] = 'print';
return $public_query_vars;
}
### Function: Display Print Link
function print_link($deprecated = '', $deprecated2 ='', $echo = true) {
global $id;
if (function_exists('polyglot_get_lang')){
global $polyglot_settings;
$polyglot_append = $polyglot_settings['uri_helpers']['lang_view'].'/'.polyglot_get_lang().'/';
}
$output = '';
$using_permalink = get_option('permalink_structure');
$print_options = get_option('print_options');
$print_style = intval($print_options['print_style']);
$print_text = stripslashes($print_options['post_text']);
$print_icon = get_option('siteurl').'/wp-content/plugins/print/images/'.$print_options['print_icon'];
$print_link = get_permalink();
$print_html = stripslashes($print_options['print_html']);
// Fix For Static Page
if(get_option('show_on_front') == 'page' && is_page()) {
if(intval(get_option('page_on_front')) > 0) {
$print_link = _get_page_link();
}
}
if(!empty($using_permalink)) {
if(substr($print_link, -1, 1) != '/') {
$print_link = $print_link.'/';
}
if(is_page()) {
$print_text = stripslashes($print_options['page_text']);
$print_link = $print_link.'printpage/'.$polyglot_append;
} else {
$print_link = $print_link.'print/'.$polyglot_append;
}
} else {
if(is_page()) {
$print_text = stripslashes($print_options['page_text']);
}
$print_link = $print_link.'&print=1';
}
unset($print_options);
switch($print_style) {
// Icon + Text Link
case 1:
$output = '
'.$print_text.'';
break;
// Icon Only
case 2:
$output = '
';
break;
// Text Link Only
case 3:
$output = ''.$print_text.'';
break;
case 4:
$print_html = str_replace("%PRINT_URL%", $print_link, $print_html);
$print_html = str_replace("%PRINT_TEXT%", $print_text, $print_html);
$print_html = str_replace("%PRINT_ICON_URL%", $print_icon, $print_html);
$output = $print_html;
break;
}
if($echo) {
echo $output."\n";
} else {
return $output;
}
}
### Function: Display Print Image Link (Deprecated)
function print_link_image() {
print_link();
}
### Function: Place Print Link
add_filter('the_content', 'place_printlink', 7);
add_filter('the_excerpt', 'place_printlink', 7);
function place_printlink($content){
if(!is_feed()) {
$content = str_replace("[print_link]", print_link('', '', false), $content);
} else {
$content = str_replace("[print_link]", __('Note: There is a print link embedded within this post, please visit this post to print it.', 'wp-print'), $content);
}
return $content;
}
### Function: Print Content
function print_content($display = true) {
global $links_text, $link_number, $pages, $multipage, $numpages, $post;
$max_url_char = 80;
if(!empty($post->post_password) && stripslashes($_COOKIE['wp-postpass_'.COOKIEHASH]) != $post->post_password) {
$content = get_the_password_form();
} else {
if($multipage) {
for($page = 0; $page < $numpages; $page++) {
$content .= $pages[$page];
}
} else {
$content = $pages[0];
}
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
if(!print_can('images')) {
$content = remove_image($content);
}
if(print_can('links')) {
preg_match_all('/(.+?)<\/a>/', $content, $matches);
for ($i=0; $i < count($matches[0]); $i++) {
$link_match = $matches[0][$i];
$link_number++;
$link_url = $matches[2][$i];
if(stristr($link_url, 'https://')) {
$link_url =(strtolower(substr($link_url,0,8)) != 'https://') ?get_option('home') . $link_url : $link_url;
} else if( stristr($link_url, 'mailto:')) {
$link_url =(strtolower(substr($link_url,0,7)) != 'mailto:') ?get_option('home') . $link_url : $link_url;
} else if( $link_url[0] == '#' ) {
$link_url = $link_url;
} else {
$link_url =(strtolower(substr($link_url,0,7)) != 'http://') ?get_option('home') . $link_url : $link_url;
}
$link_text = $matches[4][$i];
$content = str_replace_one($link_match, '['.$link_number."] ".$link_text.'', $content);
if(strlen($link_url) > 100) {
$link_url = chunk_split($link_url, 100, "
\n");
}
if(preg_match('/
/',$link_text)) {
$links_text .= '
['.$link_number.'] '.__('Image', 'wp-print').': '.$link_url.'';
} else {
$links_text .= '
['.$link_number.'] '.$link_text.': '.$link_url.'';
}
}
}
}
if($display) {
echo $content;
} else {
return $content;
}
}
### Function: Print Categories
function print_categories($before = '', $after = '') {
$temp_cat = strip_tags(get_the_category_list(',' , $parents));
$temp_cat = explode(', ', $temp_cat);
$temp_cat = implode($after.', '.$before, $temp_cat);
echo $before.$temp_cat.$after;
}
### Function: Print Comments Content
function print_comments_content($display = true) {
global $links_text, $link_number;
$content = get_comment_text();
$content = apply_filters('comment_text', $content);
if(!print_can('images')) {
$content = remove_image($content);
}
if(print_can('links')) {
preg_match_all('/(.+?)<\/a>/', $content, $matches);
for ($i=0; $i < count($matches[0]); $i++) {
$link_match = $matches[0][$i];
$link_number++;
$link_url = $matches[2][$i];
if(stristr($link_url, 'https://')) {
$link_url =(strtolower(substr($link_url,0,8)) != 'https://') ?get_option('home') . $link_url : $link_url;
} else if(stristr($link_url, 'mailto:')) {
$link_url =(strtolower(substr($link_url,0,7)) != 'mailto:') ?get_option('home') . $link_url : $link_url;
} else if($link_url[0] == '#') {
$link_url = $link_url;
} else {
$link_url =(strtolower(substr($link_url,0,7)) != 'http://') ?get_option('home') . $link_url : $link_url;
}
$link_text = $matches[4][$i];
$content = str_replace_one($link_match, '['.$link_number."] ".$link_text.'', $content);
if(strlen($link_url) > 100) {
$link_url = chunk_split($link_url, 100, "
\n");
}
if(preg_match('/
/',$link_text)) {
$links_text .= '
['.$link_number.'] '.__('Image', 'wp-print').': '.$link_url.'';
} else {
$links_text .= '
['.$link_number.'] '.$link_text.': '.$link_url.'';
}
}
}
if($display) {
echo $content;
} else {
return $content;
}
}
### Function: Print Comments
function print_comments_number() {
global $post;
$comment_text = '';
$comment_status = $post->comment_status;
if($comment_status == 'open') {
$num_comments = get_comments_number();
if($num_comments == 0) {
$comment_text = __('No Comments', 'wp-print');
} elseif($num_comments == 1) {
$comment_text = __('1 Comment', 'wp-print');
} else {
$comment_text = sprintf(__('%s Comments', 'wp-print'), $num_comments);
}
} else {
$comment_text = __('Comments Disabled', 'wp-print');
}
if(!empty($post->post_password) && stripslashes($_COOKIE['wp-postpass_'.COOKIEHASH]) != $post->post_password) {
_e('Comments Hidden', 'wp-print');
} else {
echo $comment_text;
}
}
### Function: Print Links
function print_links($text_links = '') {
global $links_text;
if(empty($text_links)) {
$text_links = __('URLs in this post:', 'wp-print');
}
if(!empty($links_text)) {
echo $text_links.$links_text;
}
}
### Function: Load WP-Print
add_action('template_redirect', 'wp_print');
function wp_print() {
if(intval(get_query_var('print')) == 1) {
include(ABSPATH.'wp-content/plugins/print/wp-print.php');
exit;
}
}
### Function: Add Print Comments Template
function print_template_comments($file = '') {
$file = ABSPATH.'wp-content/plugins/print/wp-print-comments.php';
return $file;
}
### Function: Print Page Title
function print_pagetitle($print_pagetitle) {
return '» Print'.$print_pagetitle;
}
### Function: Can Print?
function print_can($type) {
$print_options = get_option('print_options');
return intval($print_options[$type]);
}
### Function: Remove Image From Text
function remove_image($content) {
$content= preg_replace('/
/', '',$content);
return $content;
}
### Function: Replace One Time Only
function str_replace_one($search, $replace, $content){
if ($pos = strpos($content, $search)) {
return substr($content, 0, $pos).$replace.substr($content, $pos+strlen($search));
} else {
return $content;
}
}
### Function: Print Options
add_action('activate_print/print.php', 'print_init');
function print_init() {
// Add Options
$print_options = array();
$print_options['post_text'] = __('Print This Post', 'wp-print');
$print_options['page_text'] = __('Print This Page', 'wp-print');
$print_options['print_icon'] = 'print.gif';
$print_options['print_style'] = 1;
$print_options['print_html'] = '%PRINT_TEXT%';
$print_options['comments'] = 0;
$print_options['links'] = 1;
$print_options['images'] = 1;
$print_options['disclaimer'] = sprintf(__('Copyright © %s %s. All rights reserved.', 'wp-print'), date('Y'), get_option('blogname'));
add_option('print_options', $print_options, 'Print Options');
}
?>