XPressME Integration Kit

Trac

source: trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php @ 680

Last change on this file since 680 was 680, checked in by toemon, 13 years ago

Fatal error: Call to undefined function: mb_strlen()対策 fixes#388

File size: 31.8 KB
Line 
1<?php
2function xpress_user_access_level(){
3        global $current_user;
4       
5        $level = @$current_user->user_level;
6        $role = @$current_user->roles[0];
7        switch ($role){
8                case 'administrator':
9                        $role_level = 10;
10                        break;
11                case 'editor':
12                        $role_level = 7;
13                        break;
14                case 'author':
15                        $role_level = 2;
16                        break;         
17                case 'contributor':
18                        $role_level = 1;
19                        break;
20                default:
21                        $role_level = 0;
22        }
23       
24        if ($level > $role_level){
25                return $level;
26        } else {
27                return $role_level;
28        }
29}
30
31function xpress_is_contributor()
32{
33        global $current_user;
34        get_currentuserinfo();
35        if (xpress_user_access_level() > 3)
36                return true;
37        else
38                return false;
39}
40
41function xpress_is_multiblog() {
42        global $xoops_config;
43       
44        if (function_exists('is_multisite') && is_multisite()) return true;
45        return false;
46}
47
48function xpress_is_multiblog_root() {
49        global $blog_id;
50        if ( xpress_is_multiblog() && $blog_id == BLOG_ID_CURRENT_SITE){
51                return true;
52        } else {
53                return false;
54        }
55}
56
57function xpress_is_wp_version($operator='==',$comp_version){
58        global $xoops_config;
59        return version_compare($xoops_config->wp_version, $comp_version, $operator);
60}
61
62function xpress_is_theme_sidebar_disp(){
63        global $xpress_config;
64        if (is_wordpress_style()) return true;
65        return $xpress_config->is_theme_sidebar_disp;
66}       
67
68function xpress_is_author_view_count(){
69        global $xpress_config;
70        return $xpress_config->is_author_view_count;
71}
72
73function xpress_is_multi_user(){
74        global $xpress_config;
75        return $xpress_config->is_multi_user;
76}
77
78
79function xpress_the_title($args = '')
80{
81        $defaults = array(
82                'echo' => 1
83        );
84        $r = wp_parse_args( $args, $defaults );
85
86        extract( $r );
87
88        $output = '<div class ="xpress-post-header">' . "\n";
89       
90        if (function_exists('hotDates')) {
91                ob_start();
92                        hotDates();
93                        $output .= ob_get_contents();
94                ob_end_clean();
95        }
96        $output .= '<div class ="xpress-post-title">' . "\n";
97        $output .= '<h2><a href="';
98        ob_start();
99                the_permalink();
100                $output .= ob_get_contents();
101        ob_end_clean();
102       
103        if(function_exists('the_title_attribute')){
104                $title = the_title_attribute('echo=0');
105        } else {
106                ob_start();
107                        the_title();
108                        $title = ob_get_contents();
109                ob_end_clean();
110        }
111                                               
112        $output .= '" rel="bookmark" title="';
113        $output .= sprintf(__('Permanent Link to %s', 'xpress'), $title);
114        $output .= '">';
115        $output .= $title;
116        $output .= '</a></h2>' . "\n";
117        $output .= '</div>' . "\n";
118        $output .= '</div>' . "\n";
119       
120        if ($echo)
121                echo $output;
122        else
123                return $output;
124
125}
126
127function xpress_selected_author($args ='' ) {
128        $defaults = array(
129                'echo' => 1
130        );
131        $r = wp_parse_args( $args, $defaults );
132
133        extract( $r );
134
135        $output = '';
136        $author_cookie = 'select_' . get_xpress_dir_name() . "_author" ;
137        if (!empty($_COOKIE[$author_cookie])){
138                $uid = intval($_COOKIE[$author_cookie]);
139                $user_info = get_userdata($uid);
140                $output = $user_info->display_name;
141        }
142        if ($echo)
143                echo $output;
144        else
145                return $output;
146               
147}
148function xpress_selected_author_id($args ='' ) {
149        $defaults = array(
150                'echo' => 1
151        );
152        $r = wp_parse_args( $args, $defaults );
153
154        extract( $r );
155        $output = '';
156        $author_cookie = 'select_' . get_xpress_dir_name() . "_author" ;
157        if (!empty($_COOKIE[$author_cookie])){
158                $output = intval($_COOKIE[$author_cookie]);
159        } else {
160                $output = '';
161        }
162        if ($echo)
163                echo $output;
164        else
165                return $output;         
166}
167
168function xpress_now_user_level($args ='' ) {
169        global $current_user;
170        $defaults = array(
171                'echo' => 1
172        );
173        $r = wp_parse_args( $args, $defaults );
174
175        extract( $r );
176       
177        $output = xpress_user_access_level();
178        if ($echo)
179                echo $output;
180        else
181                return $output;
182}
183       
184function xpress_credit($args ='')
185{
186        global $wp_version , $xoops_config;
187        if ($xoops_config->is_wpmu) {
188                global $wpmu_version;
189        }
190       
191        $defaults = array(
192                'echo' => 1,
193                'no_link' => 0
194        );
195        $r = wp_parse_args( $args, $defaults );
196
197        extract( $r );
198       
199        $xpress_version = $xoops_config->module_version;
200        $xpress_codename = $xoops_config->module_codename;
201        if ($no_link){
202                if ($xoops_config->is_wpmu) {
203                        $output = 'XPressMU Ver.' . sprintf('%.2f %s',$xpress_version,$xpress_codename);
204                        $output .= '(included WordPress MU ' . $wpmu_version. ')';
205                } else {
206                        $output = 'XPressME Ver.' . sprintf('%.2f %s',$xpress_version,$xpress_codename);
207                        if (strstr($wp_version,'ME')){
208                                $output .= '(included WordPress ' . $wp_version . ')';
209                        } else {
210                                $output .= '(included WordPress ' . $wp_version . ')';
211                        }
212                }
213        } else {
214                if ($xoops_config->is_wpmu) {
215                        $output = '<a href="http://ja.xpressme.info"'. " target='_blank'" . '>XPressMU Ver.' . sprintf('%.2f %s',$xpress_version,$xpress_codename) .'</a>';
216                        $output .= '(included <a href="http://mu.wordpress.org/" title="Powered by WordPress"'." target='_blank'". '>WordPress MU ' . $wpmu_version . '</a>)';
217                } else {
218                        $output = '<a href="http://ja.xpressme.info"'. " target='_blank'" . '>XPressME Ver.' . sprintf('%.2f %s',$xpress_version,$xpress_codename) .'</a>';
219                        if (strstr($wp_version,'ME')){
220                                $output .= '(included <a href="http://wpme.sourceforge.jp/" title="Powered by WordPress"'." target='_blank'". '>WordPress ' . $wp_version . '</a>)';
221                        } else {
222                                $output .= '(included <a href="http://wordpress.org/" title="Powered by WordPress"'." target='_blank'". '>WordPress ' . $wp_version . '</a>)';
223                        }
224                }
225        }               
226        if ($echo)
227                echo $output;
228        else
229                return $output;
230}
231
232function xpress_convert_time($args ='')
233{
234        $defaults = array(
235                'echo' => 1,
236                'format' => '(%.3f sec.)'               
237        );
238        $r = wp_parse_args( $args, $defaults );
239
240        extract( $r );
241       
242        $output =  sprintf($format,timer_stop(0));
243        if ($echo)
244                echo $output;
245        else
246                return $output;
247}
248
249function xpress_left_arrow_post_link($args ='')
250{
251        global $xpress_config;
252        $defaults = array(
253                'echo' => 1
254        );
255        $r = wp_parse_args( $args, $defaults );
256
257        extract( $r );
258       
259        $ret = '';
260               
261        $link_str = '&laquo; %link';
262
263        if($xpress_config->is_left_postnavi_old){
264                $link_title = $xpress_config->old_post_link_text;
265                ob_start();
266                if ($xpress_config->is_postnavi_title_disp)
267                        previous_post_link($link_str);
268                else
269                        previous_post_link($link_str,$link_title);
270                $ret = ob_get_contents();
271                ob_end_clean();
272                ob_start();
273                        previous_post_link('%link',$link_title);
274                        $GLOBALS['left_arrow_post_link'] = ob_get_contents();
275                ob_end_clean();
276
277        } else {
278                $link_title = $xpress_config->newer_post_link_text;
279                ob_start();
280                if ($xpress_config->is_postnavi_title_disp)
281                        next_post_link($link_str);
282                else
283                        next_post_link($link_str,$link_title);
284                $ret = ob_get_contents();
285                ob_end_clean();
286                ob_start();
287                        next_post_link('%link',$link_title);
288                        $GLOBALS['left_arrow_post_link'] = ob_get_contents();
289                ob_end_clean();
290
291        }
292       
293        if ($xpress_config->is_postnavi_title_disp){
294                $on_mouse_show = $link_title;
295        } else  {
296                if($xpress_config->is_left_postnavi_old){
297                        ob_start();
298                                previous_post_link('%link');
299                                $on_mouse_show = ob_get_contents();
300                        ob_end_clean();
301                } else {
302                        ob_start();
303                                next_post_link('%link');
304                                $on_mouse_show = ob_get_contents();
305                        ob_end_clean();
306                }
307                $pattern = "<a[^>]*?>(.*)<\/a>";
308                preg_match("/".$pattern."/s",  $on_mouse_show, $body_matches);
309                $on_mouse_show = $body_matches[1];
310        }
311        $output = str_replace('">','" title="'.$on_mouse_show . '">' , $ret);
312
313        if (icon_exists($xpress_config->post_left_arrow_image_link)){
314                $img_link = str_replace($link_title,"<img src=\"$xpress_config->post_left_arrow_image_link\" alt=\"\" style=\"vertical-align:middle\"/>",$GLOBALS['left_arrow_post_link']);
315                $img_link = str_replace('rel=','title="'.$on_mouse_show.'" rel=',$img_link);
316                $output = str_replace('&laquo;',$img_link , $output);
317        }
318
319        if ($echo)
320                echo $output;
321        else
322                return $output;
323}
324
325function xpress_right_arrow_post_link($args ='')
326{
327        global $xpress_config;
328        $defaults = array(
329                'echo' => 1
330        );
331        $r = wp_parse_args( $args, $defaults );
332
333        extract( $r );
334
335        $ret = '';
336       
337        $link_str = '%link &raquo;';
338       
339        if($xpress_config->is_left_postnavi_old){
340                $link_title = $xpress_config->newer_post_link_text;
341                ob_start();
342                if ($xpress_config->is_postnavi_title_disp)
343                        next_post_link($link_str);
344                else
345                        next_post_link($link_str,$link_title);
346                $ret = ob_get_contents();
347                ob_end_clean();
348                ob_start();
349                        next_post_link('%link',$link_title);
350                        $GLOBALS['right_arrow_post_link'] = ob_get_contents();
351                ob_end_clean();
352
353        } else {
354                $link_title = $xpress_config->old_post_link_text;
355                ob_start();
356                if ($xpress_config->is_postnavi_title_disp)
357                        previous_post_link($link_str);
358                else
359                        previous_post_link($link_str,$link_title);
360                $ret = ob_get_contents();
361                ob_end_clean();
362                ob_start();
363                        previous_post_link('%link',$link_title);
364                        $GLOBALS['right_arrow_post_link'] = ob_get_contents();
365                ob_end_clean();
366
367        }
368       
369        if ($xpress_config->is_postnavi_title_disp){
370                $on_mouse_show = $link_title;
371        } else  {
372                if($xpress_config->is_left_postnavi_old){
373                        ob_start();
374                                next_post_link('%link');
375                                $on_mouse_show = ob_get_contents();
376                        ob_end_clean();
377                } else {
378                        ob_start();
379                                previous_post_link('%link');
380                                $on_mouse_show = ob_get_contents();
381                        ob_end_clean();
382                }
383                $pattern = "<a[^>]*?>(.*)<\/a>";
384                preg_match("/".$pattern."/s",  $on_mouse_show, $body_matches);
385                $on_mouse_show = $body_matches[1];
386        }
387        $output = str_replace('">','" title="'.$on_mouse_show . '">' , $ret);
388
389        if (icon_exists($xpress_config->post_right_arrow_image_link)){
390                $img_link = str_replace($link_title,"<img src=\"$xpress_config->post_right_arrow_image_link\" alt=\"\" style=\"vertical-align:middle\"/>",$GLOBALS['right_arrow_post_link']);
391                $img_link = str_replace('rel=','title="'.$on_mouse_show.'" rel=',$img_link);
392                $output = str_replace('&raquo;',$img_link , $output);
393        }
394
395        if ($echo)
396                echo $output;
397        else
398                return $output;
399}
400// page link
401function xpress_left_arrow_posts_link($args ='')
402{
403        global $xpress_config;
404        $defaults = array(
405                'echo' => 1
406        );
407        $r = wp_parse_args( $args, $defaults );
408
409        extract( $r );
410
411        $output = '';
412               
413        if($xpress_config->is_left_page_navi_old){
414                $link_title = $xpress_config->old_page_link_text;
415                ob_start();
416                next_posts_link("&laquo; $link_title");
417                $output = ob_get_contents();
418                ob_end_clean();
419        } else {
420                $link_title = $xpress_config->newer_page_link_text;
421                ob_start();
422                previous_posts_link("&laquo; $link_title");
423                $output = ob_get_contents();
424                ob_end_clean();
425        }
426       
427        if (icon_exists($xpress_config->page_left_arrow_image_link)){
428                $output = $img_link . str_replace('&laquo;','' , $output);
429                $img_link = str_replace($link_title,"<img src=\"$xpress_config->page_left_arrow_image_link\" alt=\"\" style=\"vertical-align:middle\"/>",$output);
430                $output = $img_link . $output;
431        }
432
433        if ($echo)
434                echo $output;
435        else
436                return $output;
437}
438
439
440function xpress_right_arrow_posts_link($args ='')
441{
442        global $xpress_config;
443        $defaults = array(
444                'echo' => 1
445        );
446        $r = wp_parse_args( $args, $defaults );
447
448        extract( $r );
449
450        $output = '';           
451       
452        if($xpress_config->is_left_page_navi_old){
453                $link_title = $xpress_config->newer_page_link_text;
454                ob_start();
455                previous_posts_link("$link_title &raquo;");
456                $output = ob_get_contents();
457                ob_end_clean();
458        } else {
459                $link_title = $xpress_config->old_page_link_text;
460                ob_start();
461                next_posts_link("$link_title &raquo;");
462                $output = ob_get_contents();
463                ob_end_clean();
464        }
465       
466        if (icon_exists($xpress_config->page_right_arrow_image_link)){
467                $output = $img_link . str_replace('&raquo;','' , $output);
468                $img_link = str_replace($link_title,"<img src=\"$xpress_config->page_right_arrow_image_link\" alt=\"\" style=\"vertical-align:middle\"/>",$output);
469                $output = $output . $img_link;
470        }
471        if ($echo)
472                echo $output;
473        else
474                return $output;
475}
476
477function xpress_substr($str, $start, $length, $trimmarker = '...')
478{
479    if (function_exists('mb_substr') && function_exists('mb_strlen')){
480        $str2 = mb_substr( $str , $start , $length);
481        return $str2 . ( mb_strlen($str)!=mb_strlen($str2) ? $trimmarker : '' );
482    } else {
483        return ( strlen($str) - $start <= $length ) ? substr( $str, $start, $length ) : substr( $str, $start, $length - strlen($trimmarker) ) . $trimmarker;
484    }
485}
486
487
488// views count
489// Set and retrieves post views given a post ID or post object.
490// Retrieves post views given a post ID or post object.
491function xpress_post_views_count($args ='') {
492        global $xoops_db,$wpdb;
493        global $blog_id;
494        static $post_cache_views;
495
496        $defaults = array(
497                'post_id' => 0,
498                'format'=> __('views :%d','xpressme'),
499                'echo' => 1
500        );
501        $r = wp_parse_args( $args, $defaults );
502
503        extract( $r );
504
505        if ( empty($post_id) ) {
506                if ( isset($GLOBALS['post']) )
507                        $post_id = $GLOBALS['post']->ID;
508        }
509        if ( empty($blogid) ) {
510                $blogid = $blog_id;
511        }
512
513        $post_id = intval($post_id);
514        if($post_id==0) return null;
515        if(!isset($post_cache_views[$post_id])){
516                if (is_null($blogid)){
517                        $blog_where = '';
518                } else {
519                        $blog_where = ' AND blog_id = '. $blogid;
520                }
521                $sql = "SELECT post_views FROM " . get_wp_prefix() . "views" . " WHERE post_id=$post_id " .  $blog_where;
522       $post_views = $xoops_db->get_var($sql);
523        if (!$post_views) {
524                $post_cache_views[$post_id] = 0;
525        }else{
526                $post_cache_views[$post_id] = $post_views;
527        }
528        }
529        $v_count = intval($post_cache_views[$post_id]);
530       
531        if (empty($format)) $format = __('views :%d','xpressme');
532       
533        $output = sprintf($format,$v_count);
534
535        if ($echo)
536                echo $output;
537        else
538                return $output;
539}
540
541function set_post_views_count($content) {
542        if ( empty($_GET["feed"]) &&  empty($GLOBALS["feed"]) && empty($GLOBALS["doing_trackback"]) && empty($GLOBALS["doing_rss"]) && empty($_POST) && is_single() ){
543                post_views_counting();
544        }
545        return $content;
546}
547
548// Set post views given a post ID or post object.
549function post_views_counting($post_id = 0) {
550        global $xoops_db,$wpdb;
551        global $table_prefix;
552        global $blog_id;
553        static $views;
554       
555        $post_id = intval($post_id);
556        if ( empty($post_id) && isset($GLOBALS['post']) ){
557                $post_id = $GLOBALS['post']->ID;
558        }
559
560        $views_db = get_wp_prefix() . 'views';
561        if (is_null($blog_id)) $blog_id = 0;
562
563        if($post_id==0 || !empty($views[$post_id])) return null;
564       
565        if(!xpress_is_author_view_count()){
566                $current_user_id = $GLOBALS['current_user']->ID;
567                $post_author_id = $GLOBALS['post']->post_author;
568                if ($current_user_id ==$post_author_id) return null;
569        }
570        if (is_null($blog_id)){
571                $blog_where = '';
572        } else {
573                $blog_where = ' AND blog_id = ' . $blog_id;
574        }
575        $sql = "SELECT post_views FROM " . $views_db . " WHERE post_id=$post_id" . $blog_where;
576        $post_views_found = $xoops_db->get_var($sql);
577        if($post_views_found){
578        $sql = "UPDATE " . $views_db . " SET post_views=post_views+1 WHERE post_id=$post_id" . $blog_where;
579    }else{
580        if (is_null($blog_id)){
581                        $sql = "INSERT INTO " . $views_db . " (post_id, post_views) VALUES ($post_id, 1)";
582                } else {
583                        $sql = "INSERT INTO " . $views_db . " (blog_id, post_id, post_views) VALUES ($blog_id, $post_id, 1)";
584                }
585    }
586    $xoops_db->query($sql);
587        return true;
588}
589
590function get_xpress_excerpt_contents($excerpt_length_word,$excerpt_length_character,$more_link_text = '') {
591        global $post,$xpress_config;
592       
593        $blog_encoding = get_option('blog_charset');
594        $text = get_the_content('');
595        if (function_exists('strip_shortcodes')){ //@since WP2.5
596                $text = strip_shortcodes( $text );
597        }
598        $text = apply_filters('the_content', $text);
599        $text = str_replace(']]>', ']]&gt;', $text);
600        $text = strip_tags($text);
601        $is_almost_ascii = ($xpress_config->ascii_judged_rate < round(@(mb_strlen($text, $blog_encoding) / strlen($text)) * 100)) ? true : false;
602        if($is_almost_ascii) {
603                $words = explode(' ', $text, $excerpt_length_word + 1);
604
605                if(count($words) > $excerpt_length_word) {
606                        array_pop($words);
607                        array_push($words, ' ... ');
608                        $text = implode(' ', $words);
609                        if (!empty($more_link_text)) $text .= '<div class="xpress-more-link"><a href="'. get_permalink() . "\">".$more_link_text .'</a></div>';
610
611                }
612        }
613        elseif(mb_strlen($text, $blog_encoding) > $excerpt_length_character) {
614                $text = mb_substr($text, 0, $xpress_config->excerpt_length_character, $blog_encoding) . ' ... ';
615                if (!empty($more_link_text)) $text .= '<div class="xpress-more-link"><a href="'. get_permalink() . "\">".$more_link_text .'</a></div>';
616        }
617
618        return $text;
619}
620
621function xpress_the_content($args ='')
622{
623        global $post,$xpress_config;
624       
625        $defaults = array(
626                'more_link_text'=> $xpress_config->more_link_text,
627                'stripteaser' => 0,
628                'more_file' => '',
629                'configration_select' => 1,
630                'do_excerpt' => 0,
631                'excerpt_length_word' => $xpress_config->excerpt_length_word ,
632                'excerpt_length_character' => $xpress_config->excerpt_length_character ,
633                'excerpt_more_link_text' => $xpress_config->excerpt_more_link_text ,
634                'echo' => 1
635        );
636        $r = wp_parse_args( $args, $defaults );
637
638        extract( $r );
639       
640        if ($configration_select){
641                if ($xpress_config->is_content_excerpt)
642                        $do_excerpt = 1;
643                else
644                        $do_excerpt = 0;
645        }
646       
647        if ($do_excerpt){
648                $content = get_xpress_excerpt_contents($excerpt_length_word,$excerpt_length_character,$excerpt_more_link_text);
649        } else {
650                $content = get_the_content($more_link_text,$stripteaser,$more_file);
651                $content = apply_filters('the_content', $content);
652                $content = str_replace(']]>', ']]&gt;', $content);
653        }       
654        if ($echo)
655                echo $content;
656        else
657                return $content;
658}
659
660function xpress_post_new_link($args ='')
661{
662        global $xoops_config;
663       
664        $defaults = array(
665                'link_title'=> 'Post New',
666                'echo' => 1
667        );
668        $r = wp_parse_args( $args, $defaults );
669
670        extract( $r );
671
672       
673        if (xpress_is_wp_version('>=','2.1')){
674                $output = '<a href="'. get_bloginfo('url') . '/wp-admin/post-new.php' . '">' . $link_title . '</a>';
675        } else {
676                $output = '<a href="'. get_bloginfo('url') . '/wp-admin/post.php' . '">' . $link_title . '</a>';
677        }       
678        if ($echo)
679                echo $output;
680        else
681                return $output;
682}
683
684function xpress_conditional_title($args ='')
685{
686        $defaults = array(
687                'echo' => 1
688        );
689        $r = wp_parse_args( $args, $defaults );
690
691        extract( $r );
692       
693        $selected_author = xpress_selected_author('echo=0');
694       
695        $output = __('Main', 'xpressme');
696        $output = '';
697        if (is_category())
698                $output = sprintf(__('Archive for the &#8216;%s&#8217; Category', 'xpressme'), single_cat_title('', false));
699        if (function_exists( 'is_tag' )){
700                if (is_tag())
701                        $output = sprintf(__('Posts Tagged &#8216;%s&#8217;', 'xpressme'), single_tag_title('', false) );
702        }
703        if (is_day())
704                $output = sprintf(__('Archive for %s|Daily archive page', 'xpressme'), get_the_time(__('F jS, Y', 'xpressme')));
705        if (is_month())
706                $output = sprintf(__('Archive for %s|Monthly archive page', 'xpressme'), get_the_time(__('F, Y', 'xpressme')));
707        if (is_year())
708                $output = sprintf(__('Archive for %s|Yearly archive page', 'xpressme'), get_the_time(__('Y', 'xpressme')));
709        if (is_author()){
710                if (empty($selected_author))
711                        $output = sprintf(__('Archive for the &#8216;%s&#8217; Author', 'xpressme'), get_author_name( get_query_var('author')));
712        }
713        if (is_search())
714                $output = sprintf(__('Search Results of word &#8216;%s&#8217;', 'xpressme'), get_search_query());
715       
716        if (!empty($selected_author)){
717                $selected_id = xpress_selected_author_id('echo=0');
718//              $output = get_avatar($selected_id,$size = '32') . sprintf(__('Article of %s', 'xpressme'), $selected_author) . ' - ' . $output;
719                if (empty($output))
720                        $output = sprintf(__('Article of %s', 'xpressme'), $selected_author) ;
721                else
722                        $output = sprintf(__('Article of %s', 'xpressme'), $selected_author) . ' - ' . $output;
723        }       
724        if ($echo)
725                echo $output;
726        else
727                return $output;
728}
729
730// The content of the trackback/pingback to the post is returned by the list.
731function xpress_pings_list($args =''){
732        $defaults = array(
733                'echo' => 1
734        );
735        $r = wp_parse_args( $args, $defaults );
736
737        extract( $r );
738       
739        $trackbacks = xpress_get_pings();
740        if (! empty($trackbacks)) {
741                $output = '<ol id="xpress_pingslist"> ';
742
743                foreach ($trackbacks as $trackback){
744                        $list = date(get_settings('date_format'),$trackback['date']) . ' <a target="_blank" href="' . $trackback['site_url'] . '" rel="external nofollow">' . sprintf(__('From %1$s on site %2$s','xpressme'),$trackback['title'],$trackback['site_name']) . "</a>\n" ;
745
746                        $output .=  '<li>';
747                        $output .=  $list ;
748                        $output .=  '</li>';
749
750                }
751                $output .= '</ol>' ;
752        } else {
753                $output = '';
754        }
755       
756        if ($echo)
757                echo $output;
758        else
759                return $output;
760}
761
762// The amount of the trackback/pingback to the post is returned.
763function xpress_pings_number( $args ='' ) {
764        $defaults = array(
765                'zero' => __('No Trackback/Pingback', 'xpressme'),
766                'one' => __('One Trackback/Pingback', 'xpressme'),
767                'more' => __('% TrackBack/Pingback', 'xpressme'),
768                'deprecated' => '',
769                'echo' => 1
770        );
771        $r = wp_parse_args( $args, $defaults );
772
773        extract( $r );
774
775        $pings = xpress_get_pings();
776        if (empty($pings)){
777                $number = 0;
778        }else {
779                $number = count($pings);
780        }
781        if ( $number > 1 )
782                $output = str_replace('%', number_format_i18n($number), $more);
783        elseif ( $number == 0 )
784                $output = $zero;
785        else // must be one
786                $output = $one;
787
788        if ($echo)
789                echo $output;
790        else
791                return $output;
792}
793
794// xpress_get_pings() is a subfunction used with xpress_pings_number() and xpress_pings_list().
795function xpress_get_pings()
796{
797        global $withcomments, $post, $wpdb, $id, $trackback, $user_login, $user_ID, $user_identity;
798
799        if ( ! (is_single() || is_page() || $withcomments) )
800                return;
801
802        /** @todo Use API instead of SELECTs. */
803        if ( $user_ID) {
804                $trackbacks = $wpdb->get_results(sprintf("SELECT * , UNIX_TIMESTAMP(comment_date) AS comment_timestamp ,UNIX_TIMESTAMP(comment_date_gmt) AS comment_timestamp_gmt FROM $wpdb->comments WHERE comment_post_ID = %d AND (comment_approved = '1' OR ( user_id = %d AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $user_ID));
805        } else if ( empty($trackback_author) ) {
806                $trackbacks = $wpdb->get_results(sprintf("SELECT * , UNIX_TIMESTAMP(comment_date) AS comment_timestamp ,UNIX_TIMESTAMP(comment_date_gmt) AS comment_timestamp_gmt FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved = '1' AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID));
807        } else {
808                $trackbacks = $wpdb->get_results(sprintf("SELECT * , UNIX_TIMESTAMP(comment_date) AS comment_timestamp ,UNIX_TIMESTAMP(comment_date_gmt) AS comment_timestamp_gmt FROM $wpdb->comments WHERE comment_post_ID = %d AND ( comment_approved = '1' OR ( comment_author = %s AND comment_author_email = %s AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $trackback_author, $trackback_author_email));
809        }
810
811        if ($trackbacks){
812                $ret = array();
813                foreach ($trackbacks as $trackback){
814
815                        $pattern = '<strong>(.*)<\/strong>(.*)';
816                        if ( preg_match ( "/".$pattern."/i", $trackback->comment_content , $match ) ){
817                                $title = $match[1];
818                                $content = $match[2];
819                        }
820                        if (empty($title)) $title = $trackback->comment_author;
821
822
823                        $row_data = array(
824                                'ID'            => $trackback->comment_ID ,
825                                'post_ID'       => $trackback->comment_post_ID ,
826                                'site_name' => $trackback->comment_author ,
827                                'site_url' => $trackback->comment_author_url ,
828                                'title' => $title ,
829                                'content' => $content ,
830                                'date'          => $trackback->comment_timestamp ,
831                                'date_gmt'              => $trackback->comment_timestamp_gmt ,
832                                'agent'         => $trackback->comment_agent ,
833                                'type'          => $trackback->comment_type ,
834                                'IP'            => $trackback->comment_author_IP ,
835                        );
836                        array_push($ret,$row_data);
837                }
838                return $ret;
839        }
840                        return false;
841}
842
843function xpress_get_calendar($args = '') {
844        global $wpdb, $m, $monthnum, $year, $wp_locale, $posts , $xoops_config;
845
846        $defaults = array(
847                sun_color => '#DB0000',
848                sat_color => '#004D99',
849                initial => true
850        );
851        $r = wp_parse_args( $args, $defaults );
852
853        extract( $r );
854       
855        ob_start();
856                get_calendar(true);
857                $calendar = ob_get_contents();
858        ob_end_clean();
859        $calendar = preg_replace('/<th abbr=/', '<th align="center"  abbr=', $calendar); //week name align center
860        $calendar = preg_replace('/<td>/', '<td align="center">', $calendar); //days align center
861        $calendar = preg_replace('/<td id="today">/', '<td id="today" align="center">', $calendar); //today align center
862        $calendar = preg_replace('/<span style="color:[^>]*>/', '', $calendar); //wp2011 color delete
863        $calendar = preg_replace('/<\/span>/', '', $calendar); //wp2011 color delete
864
865        $week_begins = intval(get_option('start_of_week'));
866        $head_pattrn = '<thead>\s*<tr>\s*(<th[^>]*>[^<]*<\/th>)\s*(<th[^>]*>[^<]*<\/th>)\s*(<th[^>]*>[^<]*<\/th>)\s*(<th[^>]*>[^<]*<\/th>)\s*(<th[^>]*>[^<]*<\/th>)\s*(<th[^>]*>[^<]*<\/th>)\s*(<th[^>]*>[^<]*<\/th>)\s*<\/tr>\s*<\/thead>';
867        if(preg_match('/'. $head_pattrn . '/s' ,$calendar,$head_match)){
868                $sun_index = 1 - $week_begins;
869                if ($sun_index < 1) $sun_index = $sun_index +7;
870                $sat_index = 7 - $week_begins;
871                if ($sat_index < 1) $sat_index = $sat_index +7;
872               
873                $sun_head = $head_match[$sun_index];
874                $sat_head = $head_match[$sat_index];
875               
876                $pattrn = '(<th[^>]*>)(.*)(<\/th>)';
877                if(preg_match('/'. $pattrn . '/' ,$sun_head,$sun_match)){
878                        $sun_head_after = $sun_match[1] . '<span style="color: ' . $sun_color . '">' . $sun_match[2] . '</span>'. $sun_match[3];
879                        $calendar = str_replace($sun_head,$sun_head_after,$calendar);
880                }
881                if(preg_match('/'. $pattrn . '/' ,$sat_head,$sat_match)){
882                        $sat_head_after = $sat_match[1] . '<span style="color: ' . $sat_color . '">' . $sat_match[2] . '</span>'. $sat_match[3];
883                        $calendar = str_replace($sat_head,$sat_head_after,$calendar);
884                }
885        }
886        return $calendar;
887}
888
889function xpress_grobal_recent_posts($num = 10,$post_list='')
890{
891        global $wpdb, $wp_rewrite , $switched , $blog_id;
892        if (empty($date_format)) $date_format = get_settings('date_format');
893        if (empty($time_format)) $time_format = get_settings('time_format');
894
895        $first_blogid = $blog_id;
896        $num = (int)$num;
897//      $wp_query->in_the_loop = true;          //for use the_tags() in multi lopp
898        $data_array = array();
899        if (xpress_is_multiblog()){
900                $blogs = get_blog_list(0,'all');
901                foreach ($blogs AS $blog) {
902                        switch_to_blog($blog['blog_id']);
903                        $wp_rewrite->init();  // http://core.trac.wordpress.org/ticket/12040 is solved, it is unnecessary.
904
905                                if (empty($num)){
906                                        query_posts("post_status=publish");
907                                } else {
908                                        query_posts("showposts=$num&post_status=publish");
909                                }
910                                if (have_posts()){
911                                        while(have_posts()){
912                                                $data = new stdClass();
913                                               
914                                                the_post();
915                                                ob_start();
916                                                        the_ID();
917                                                        $data->post_id = ob_get_contents();
918                                                ob_end_clean();
919                                               
920                                                $data->brog_id = $blog['blog_id'];
921                                                $data->blog_name = get_bloginfo('name');
922                                                $data->blog_url = get_bloginfo('url');
923                                                $data->blog_link = '<a href="' . $data->blog_url . '">' . $data->blog_name . '</a>' ;
924
925
926                                                ob_start();
927                                                        the_title();
928                                                        $data->title = ob_get_contents();
929                                                ob_end_clean();
930                                                $data->post_permalink = get_blog_permalink($data->brog_id, $data->post_id);
931                                                $data->title_link = '<a href="' . $data->post_permalink . '">' . $data->title . '</a>' ;
932
933                                                ob_start();
934                                                        the_author_posts_link();
935                                                        $data->post_author = ob_get_contents();
936                                                ob_end_clean();
937
938                                                ob_start();
939                                                        the_category(' &bull; ');
940                                                        $data->post_category = ob_get_contents();
941                                                ob_end_clean();
942                                               
943                                                if (function_exists('the_tags')){
944                                                        ob_start();
945                                                                the_tags(__('Tags:', 'xpress') . ' ',' &bull; ','');
946                                                                $data->post_tags = ob_get_contents();
947                                                        ob_end_clean();
948                                                } else {
949                                                        $data->tags = '';
950                                                }
951
952                                                $data->the_content = xpress_the_content('echo=0');
953                                               
954                                                ob_start();
955                                                        the_content();
956                                                        $data->the_full_content = ob_get_contents();
957                                                ob_end_clean();
958                                               
959                                                ob_start();
960                                                        the_modified_date($date_format);
961                                                        $data->post_modified_date = ob_get_contents();
962                                                ob_end_clean();
963                                                       
964                                                ob_start();
965                                                        the_modified_date($time_format);
966                                                        $data->post_modified_time = ob_get_contents();
967                                                ob_end_clean();
968                                                $data->post_modified_date_time = $data->post_modified_date . ' ' . $data->post_modified_time;
969                                               
970                                                ob_start();
971                                                        the_time('U');
972                                                        $data->post_unix_time = ob_get_contents();
973                                                ob_end_clean();
974                                               
975                                                ob_start();
976                                                        the_time($date_format);
977                                                        $data->post_date = ob_get_contents();
978                                                ob_end_clean();
979                                               
980                                                ob_start();
981                                                        the_time($time_format);
982                                                        $data->post_time = ob_get_contents();
983                                                ob_end_clean();
984                                               
985                                                $data->post_date_time = $data->post_date . ' ' . $data->post_time;
986
987                                                ob_start();
988                                                        comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)'));
989                                                        $data->comments_link = ob_get_contents();
990                                                ob_end_clean();
991                                               
992                                                $data->post_views = xpress_post_views_count('post_id=' . $data->post_id . '&blogid=' . $data->brog_id . '&format=' . __('Views :%d', 'xpress'). '&echo=0');
993
994                                                $data_array[] = $data;
995                                }  // end whilwe
996                                } // end if
997                        restore_current_blog();
998//                      $wp_rewrite->init();
999                } // end foreach
1000//              switch_to_blog($first_blogid);
1001                $wp_rewrite->init(); // http://core.trac.wordpress.org/ticket/12040 is solved, it is unnecessary.
1002
1003                restore_current_blog();
1004                usort($data_array, "the_time_cmp");
1005        }
1006       
1007        if (!empty($num)){
1008                $data_array = array_slice($data_array,0,$num);
1009        }
1010        return $data_array;
1011}
1012function the_time_cmp($a, $b)
1013{
1014    return - strcasecmp($a->post_unix_time, $b->post_unix_time);
1015}
1016
1017function xpress_get_blog_option($option_name,$b_id = 1)
1018{
1019        global $wpdb;
1020        $db_prefix = get_wp_prefix();
1021       
1022        if (empty($b_id)) $b_id =1;
1023        $blog_prefix = '';
1024        if ($b_id >1) $blog_prefix = $b_id . '_';
1025        $options_tb = $db_prefix . $blog_prefix .'options';
1026
1027        $sql = "SELECT option_value FROM $options_tb WHERE option_name = $option_name";
1028        $ret_val = $wpdb->get_var($sql);
1029        return $ret_val;
1030}
1031
1032function xpress_create_new_blog_link($args ='' ) {
1033        global $xoops_config;
1034
1035        global $current_user;
1036        $defaults = array(
1037                'echo' => 1
1038        );
1039        $r = wp_parse_args( $args, $defaults );
1040
1041        extract( $r );
1042        $result = xpress_create_new_blog();
1043        if (!empty($result)){
1044                $output = $result['link'];
1045        } else {
1046                $output = '';
1047        }
1048       
1049        if ($echo)
1050                echo $output;
1051        else
1052                return $output;
1053}
1054
1055function xpress_create_new_blog() {
1056        global $xoops_config;
1057        global $current_user;
1058        $ret = array();
1059
1060        if (xpress_is_multiblog() && is_user_logged_in()){
1061                $primary_blog_id = @$current_user->primary_blog;
1062                if (!empty($primary_blog_id)) return $ret;
1063                $active_signup = get_site_option( 'registration' );
1064                if ( !$active_signup ) $active_signup = 'none';
1065                switch ($active_signup){
1066                        case 'all':
1067                        case 'blog':
1068                                $ret['url'] = $xoops_config->module_url . '/wp-signup.php';
1069                                $ret['menu_url'] = 'wp-signup.php';
1070                                $ret['title'] = __('Create New Blog','xpressme');
1071                                $ret['link'] = '<a href="' . $ret['url'] . '">' . $ret['title'] . '</a>';
1072                                break;
1073                        case 'user':
1074                        case 'none':
1075                        default:
1076                }
1077        }
1078        return $ret;
1079}
1080function xpress_primary_blog_link() {
1081        global $xoops_config;
1082        global $current_user;
1083        global $blog_id;
1084        $ret = array();
1085
1086        if (xpress_is_multiblog() && is_user_logged_in()){
1087                $blog_list = get_blog_list();
1088                $root_path = get_blog_status(1,'path');
1089                $primary_blog_id = @$current_user->primary_blog;
1090                if(empty($primary_blog_id)) return $ret;
1091                $primary_path = get_blog_status($primary_blog_id,'path');
1092                $script = str_replace($root_path, "", $primary_path);
1093                if ($primary_blog_id !== $blog_id){
1094                        $ret['url'] = get_blogaddress_by_id($primary_blog_id);
1095                        $ret['menu_url'] = $script;
1096                        $ret['title'] = __('Your Primary Blog','xpressme');
1097                        $ret['link'] = '<a href="' . $ret['url'] . '">' . $ret['title'] . '</a>';
1098                }
1099        }
1100        return $ret;
1101}
1102
1103?>
Note: See TracBrowser for help on using the repository browser.