| 1 | <?php
 | 
|---|
| 2 | function 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 | 
 | 
|---|
| 31 | function 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 | 
 | 
|---|
| 41 | function xpress_is_multiblog() {
 | 
|---|
| 42 |         global $xoops_config;
 | 
|---|
| 43 |         
 | 
|---|
| 44 |         if (function_exists('is_multisite') && is_multisite()) return true;
 | 
|---|
| 45 |         return false;
 | 
|---|
| 46 | }
 | 
|---|
| 47 | 
 | 
|---|
| 48 | function 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 | 
 | 
|---|
| 57 | function xpress_is_wp_version($operator='==',$comp_version){
 | 
|---|
| 58 |         global $xoops_config;
 | 
|---|
| 59 |         return version_compare($xoops_config->wp_version, $comp_version, $operator);
 | 
|---|
| 60 | }
 | 
|---|
| 61 | 
 | 
|---|
| 62 | function 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 | 
 | 
|---|
| 68 | function xpress_is_author_view_count(){
 | 
|---|
| 69 |         global $xpress_config;
 | 
|---|
| 70 |         return $xpress_config->is_author_view_count;
 | 
|---|
| 71 | }
 | 
|---|
| 72 | 
 | 
|---|
| 73 | function xpress_is_multi_user(){
 | 
|---|
| 74 |         global $xpress_config;
 | 
|---|
| 75 |         return $xpress_config->is_multi_user;
 | 
|---|
| 76 | }
 | 
|---|
| 77 | 
 | 
|---|
| 78 | 
 | 
|---|
| 79 | function 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 | 
 | 
|---|
| 127 | function 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 | }
 | 
|---|
| 148 | function 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 | 
 | 
|---|
| 168 | function 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 |         
 | 
|---|
| 184 | function 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 | 
 | 
|---|
| 232 | function 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 | 
 | 
|---|
| 249 | function 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 = '« %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('«',$img_link , $output);
 | 
|---|
| 317 |         }
 | 
|---|
| 318 | 
 | 
|---|
| 319 |         if ($echo)
 | 
|---|
| 320 |                 echo $output;
 | 
|---|
| 321 |         else
 | 
|---|
| 322 |                 return $output;
 | 
|---|
| 323 | }
 | 
|---|
| 324 | 
 | 
|---|
| 325 | function 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 »';
 | 
|---|
| 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('»',$img_link , $output);
 | 
|---|
| 393 |         }
 | 
|---|
| 394 | 
 | 
|---|
| 395 |         if ($echo)
 | 
|---|
| 396 |                 echo $output;
 | 
|---|
| 397 |         else
 | 
|---|
| 398 |                 return $output;
 | 
|---|
| 399 | }
 | 
|---|
| 400 | // page link
 | 
|---|
| 401 | function 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("« $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("« $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('«','' , $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 | 
 | 
|---|
| 440 | function 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 »");
 | 
|---|
| 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 »");
 | 
|---|
| 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('»','' , $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 | 
 | 
|---|
| 477 | function 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. 
 | 
|---|
| 491 | function 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 | 
 | 
|---|
| 541 | function 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. 
 | 
|---|
| 549 | function 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 | 
 | 
|---|
| 590 | function 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(']]>', ']]>', $text);
 | 
|---|
| 600 |         $text = strip_tags($text);
 | 
|---|
| 601 |         if (function_exists('mb_strlen') && function_exists('mb_substr')){
 | 
|---|
| 602 |                 $is_almost_ascii = ($xpress_config->ascii_judged_rate < round(@(mb_strlen($text, $blog_encoding) / strlen($text)) * 100)) ? true : false;
 | 
|---|
| 603 |         } else {
 | 
|---|
| 604 |                 $is_almost_ascii = true;
 | 
|---|
| 605 |         }
 | 
|---|
| 606 |         if($is_almost_ascii) {
 | 
|---|
| 607 |                 $words = explode(' ', $text, $excerpt_length_word + 1);
 | 
|---|
| 608 | 
 | 
|---|
| 609 |                 if(count($words) > $excerpt_length_word) {
 | 
|---|
| 610 |                         array_pop($words);
 | 
|---|
| 611 |                         array_push($words, ' ... ');
 | 
|---|
| 612 |                         $text = implode(' ', $words);
 | 
|---|
| 613 |                         if (!empty($more_link_text)) $text .= '<div class="xpress-more-link"><a href="'. get_permalink() . "\">".$more_link_text .'</a></div>';
 | 
|---|
| 614 | 
 | 
|---|
| 615 |                 }
 | 
|---|
| 616 |         }
 | 
|---|
| 617 |         elseif(mb_strlen($text, $blog_encoding) > $excerpt_length_character) {
 | 
|---|
| 618 |                 $text = mb_substr($text, 0, $xpress_config->excerpt_length_character, $blog_encoding) . ' ... ';
 | 
|---|
| 619 |                 if (!empty($more_link_text)) $text .= '<div class="xpress-more-link"><a href="'. get_permalink() . "\">".$more_link_text .'</a></div>';
 | 
|---|
| 620 |         }
 | 
|---|
| 621 | 
 | 
|---|
| 622 |         return $text;
 | 
|---|
| 623 | }
 | 
|---|
| 624 | 
 | 
|---|
| 625 | function xpress_the_content($args ='')
 | 
|---|
| 626 | {
 | 
|---|
| 627 |         global $post,$xpress_config;
 | 
|---|
| 628 |         
 | 
|---|
| 629 |         $defaults = array(
 | 
|---|
| 630 |                 'more_link_text'=> $xpress_config->more_link_text,
 | 
|---|
| 631 |                 'stripteaser' => 0,
 | 
|---|
| 632 |                 'more_file' => '',
 | 
|---|
| 633 |                 'configration_select' => 1,
 | 
|---|
| 634 |                 'do_excerpt' => 0,
 | 
|---|
| 635 |                 'excerpt_length_word' => $xpress_config->excerpt_length_word ,
 | 
|---|
| 636 |                 'excerpt_length_character' => $xpress_config->excerpt_length_character ,
 | 
|---|
| 637 |                 'excerpt_more_link_text' => $xpress_config->excerpt_more_link_text ,
 | 
|---|
| 638 |                 'echo' => 1
 | 
|---|
| 639 |         );
 | 
|---|
| 640 |         $r = wp_parse_args( $args, $defaults );
 | 
|---|
| 641 | 
 | 
|---|
| 642 |         extract( $r );
 | 
|---|
| 643 |         
 | 
|---|
| 644 |         if ($configration_select){
 | 
|---|
| 645 |                 if ($xpress_config->is_content_excerpt)
 | 
|---|
| 646 |                         $do_excerpt = 1;
 | 
|---|
| 647 |                 else
 | 
|---|
| 648 |                         $do_excerpt = 0;
 | 
|---|
| 649 |         }
 | 
|---|
| 650 |         
 | 
|---|
| 651 |         if ($do_excerpt){
 | 
|---|
| 652 |                 $content = get_xpress_excerpt_contents($excerpt_length_word,$excerpt_length_character,$excerpt_more_link_text);
 | 
|---|
| 653 |         } else {
 | 
|---|
| 654 |                 $content = get_the_content($more_link_text,$stripteaser,$more_file);
 | 
|---|
| 655 |                 $content = apply_filters('the_content', $content);
 | 
|---|
| 656 |                 $content = str_replace(']]>', ']]>', $content);
 | 
|---|
| 657 |         }       
 | 
|---|
| 658 |         if ($echo)
 | 
|---|
| 659 |                 echo $content;
 | 
|---|
| 660 |         else
 | 
|---|
| 661 |                 return $content;
 | 
|---|
| 662 | }
 | 
|---|
| 663 | 
 | 
|---|
| 664 | function xpress_post_new_link($args ='')
 | 
|---|
| 665 | {
 | 
|---|
| 666 |         global $xoops_config;
 | 
|---|
| 667 |         
 | 
|---|
| 668 |         $defaults = array(
 | 
|---|
| 669 |                 'link_title'=> 'Post New',
 | 
|---|
| 670 |                 'echo' => 1
 | 
|---|
| 671 |         );
 | 
|---|
| 672 |         $r = wp_parse_args( $args, $defaults );
 | 
|---|
| 673 | 
 | 
|---|
| 674 |         extract( $r );
 | 
|---|
| 675 | 
 | 
|---|
| 676 |         
 | 
|---|
| 677 |         if (xpress_is_wp_version('>=','2.1')){
 | 
|---|
| 678 |                 $output = '<a href="'. get_bloginfo('url') . '/wp-admin/post-new.php' . '">' . $link_title . '</a>';
 | 
|---|
| 679 |         } else {
 | 
|---|
| 680 |                 $output = '<a href="'. get_bloginfo('url') . '/wp-admin/post.php' . '">' . $link_title . '</a>';
 | 
|---|
| 681 |         }       
 | 
|---|
| 682 |         if ($echo)
 | 
|---|
| 683 |                 echo $output;
 | 
|---|
| 684 |         else
 | 
|---|
| 685 |                 return $output;
 | 
|---|
| 686 | }
 | 
|---|
| 687 | 
 | 
|---|
| 688 | function xpress_conditional_title($args ='')
 | 
|---|
| 689 | {
 | 
|---|
| 690 |         $defaults = array(
 | 
|---|
| 691 |                 'echo' => 1
 | 
|---|
| 692 |         );
 | 
|---|
| 693 |         $r = wp_parse_args( $args, $defaults );
 | 
|---|
| 694 | 
 | 
|---|
| 695 |         extract( $r );
 | 
|---|
| 696 |         
 | 
|---|
| 697 |         $selected_author = xpress_selected_author('echo=0');
 | 
|---|
| 698 |         
 | 
|---|
| 699 |         $output = __('Main', 'xpressme');
 | 
|---|
| 700 |         $output = '';
 | 
|---|
| 701 |         if (is_category())
 | 
|---|
| 702 |                 $output = sprintf(__('Archive for the ‘%s’ Category', 'xpressme'), single_cat_title('', false));
 | 
|---|
| 703 |         if (function_exists( 'is_tag' )){
 | 
|---|
| 704 |                 if (is_tag())
 | 
|---|
| 705 |                         $output = sprintf(__('Posts Tagged ‘%s’', 'xpressme'), single_tag_title('', false) );
 | 
|---|
| 706 |         }
 | 
|---|
| 707 |         if (is_day())
 | 
|---|
| 708 |                 $output = sprintf(__('Archive for %s|Daily archive page', 'xpressme'), get_the_time(__('F jS, Y', 'xpressme')));
 | 
|---|
| 709 |         if (is_month())
 | 
|---|
| 710 |                 $output = sprintf(__('Archive for %s|Monthly archive page', 'xpressme'), get_the_time(__('F, Y', 'xpressme')));
 | 
|---|
| 711 |         if (is_year())
 | 
|---|
| 712 |                 $output = sprintf(__('Archive for %s|Yearly archive page', 'xpressme'), get_the_time(__('Y', 'xpressme')));
 | 
|---|
| 713 |         if (is_author()){
 | 
|---|
| 714 |                 if (empty($selected_author))
 | 
|---|
| 715 |                         $output = sprintf(__('Archive for the ‘%s’ Author', 'xpressme'), get_author_name( get_query_var('author')));
 | 
|---|
| 716 |         }
 | 
|---|
| 717 |         if (is_search())
 | 
|---|
| 718 |                 $output = sprintf(__('Search Results of word ‘%s’', 'xpressme'), get_search_query());
 | 
|---|
| 719 |         
 | 
|---|
| 720 |         if (!empty($selected_author)){
 | 
|---|
| 721 |                 $selected_id = xpress_selected_author_id('echo=0');
 | 
|---|
| 722 | //              $output = get_avatar($selected_id,$size = '32') . sprintf(__('Article of %s', 'xpressme'), $selected_author) . ' - ' . $output;
 | 
|---|
| 723 |                 if (empty($output))
 | 
|---|
| 724 |                         $output = sprintf(__('Article of %s', 'xpressme'), $selected_author) ;
 | 
|---|
| 725 |                 else
 | 
|---|
| 726 |                         $output = sprintf(__('Article of %s', 'xpressme'), $selected_author) . ' - ' . $output;
 | 
|---|
| 727 |         }       
 | 
|---|
| 728 |         if ($echo)
 | 
|---|
| 729 |                 echo $output;
 | 
|---|
| 730 |         else
 | 
|---|
| 731 |                 return $output;
 | 
|---|
| 732 | }
 | 
|---|
| 733 | 
 | 
|---|
| 734 | // The content of the trackback/pingback to the post is returned by the list. 
 | 
|---|
| 735 | function xpress_pings_list($args =''){
 | 
|---|
| 736 |         $defaults = array(
 | 
|---|
| 737 |                 'echo' => 1
 | 
|---|
| 738 |         );
 | 
|---|
| 739 |         $r = wp_parse_args( $args, $defaults );
 | 
|---|
| 740 | 
 | 
|---|
| 741 |         extract( $r );
 | 
|---|
| 742 |         
 | 
|---|
| 743 |         $trackbacks = xpress_get_pings();
 | 
|---|
| 744 |         if (! empty($trackbacks)) {
 | 
|---|
| 745 |                 $output = '<ol id="xpress_pingslist"> ';
 | 
|---|
| 746 | 
 | 
|---|
| 747 |                 foreach ($trackbacks as $trackback){
 | 
|---|
| 748 |                         $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" ;
 | 
|---|
| 749 | 
 | 
|---|
| 750 |                         $output .=  '<li>';
 | 
|---|
| 751 |                         $output .=  $list ;
 | 
|---|
| 752 |                         $output .=  '</li>';
 | 
|---|
| 753 | 
 | 
|---|
| 754 |                 }
 | 
|---|
| 755 |                 $output .= '</ol>' ;
 | 
|---|
| 756 |         } else {
 | 
|---|
| 757 |                 $output = '';
 | 
|---|
| 758 |         }
 | 
|---|
| 759 |         
 | 
|---|
| 760 |         if ($echo)
 | 
|---|
| 761 |                 echo $output;
 | 
|---|
| 762 |         else
 | 
|---|
| 763 |                 return $output;
 | 
|---|
| 764 | }
 | 
|---|
| 765 | 
 | 
|---|
| 766 | // The amount of the trackback/pingback to the post is returned.
 | 
|---|
| 767 | function xpress_pings_number( $args ='' ) {
 | 
|---|
| 768 |         $defaults = array(
 | 
|---|
| 769 |                 'zero' => __('No Trackback/Pingback', 'xpressme'),
 | 
|---|
| 770 |                 'one' => __('One Trackback/Pingback', 'xpressme'),
 | 
|---|
| 771 |                 'more' => __('% TrackBack/Pingback', 'xpressme'),
 | 
|---|
| 772 |                 'deprecated' => '',
 | 
|---|
| 773 |                 'echo' => 1
 | 
|---|
| 774 |         );
 | 
|---|
| 775 |         $r = wp_parse_args( $args, $defaults );
 | 
|---|
| 776 | 
 | 
|---|
| 777 |         extract( $r );
 | 
|---|
| 778 | 
 | 
|---|
| 779 |         $pings = xpress_get_pings();
 | 
|---|
| 780 |         if (empty($pings)){
 | 
|---|
| 781 |                 $number = 0;
 | 
|---|
| 782 |         }else {
 | 
|---|
| 783 |                 $number = count($pings);
 | 
|---|
| 784 |         }
 | 
|---|
| 785 |         if ( $number > 1 )
 | 
|---|
| 786 |                 $output = str_replace('%', number_format_i18n($number), $more);
 | 
|---|
| 787 |         elseif ( $number == 0 )
 | 
|---|
| 788 |                 $output = $zero;
 | 
|---|
| 789 |         else // must be one
 | 
|---|
| 790 |                 $output = $one;
 | 
|---|
| 791 | 
 | 
|---|
| 792 |         if ($echo)
 | 
|---|
| 793 |                 echo $output;
 | 
|---|
| 794 |         else
 | 
|---|
| 795 |                 return $output;
 | 
|---|
| 796 | }
 | 
|---|
| 797 | 
 | 
|---|
| 798 | // xpress_get_pings() is a subfunction used with xpress_pings_number() and xpress_pings_list(). 
 | 
|---|
| 799 | function xpress_get_pings()
 | 
|---|
| 800 | {
 | 
|---|
| 801 |         global $withcomments, $post, $wpdb, $id, $trackback, $user_login, $user_ID, $user_identity;
 | 
|---|
| 802 | 
 | 
|---|
| 803 |         if ( ! (is_single() || is_page() || $withcomments) )
 | 
|---|
| 804 |                 return;
 | 
|---|
| 805 | 
 | 
|---|
| 806 |         /** @todo Use API instead of SELECTs. */
 | 
|---|
| 807 |         if ( $user_ID) {
 | 
|---|
| 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 ( user_id = %d AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $user_ID));
 | 
|---|
| 809 |         } else if ( empty($trackback_author) ) {
 | 
|---|
| 810 |                 $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));
 | 
|---|
| 811 |         } else {
 | 
|---|
| 812 |                 $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));
 | 
|---|
| 813 |         }
 | 
|---|
| 814 | 
 | 
|---|
| 815 |         if ($trackbacks){
 | 
|---|
| 816 |                 $ret = array();
 | 
|---|
| 817 |                 foreach ($trackbacks as $trackback){
 | 
|---|
| 818 | 
 | 
|---|
| 819 |                         $pattern = '<strong>(.*)<\/strong>(.*)';
 | 
|---|
| 820 |                         if ( preg_match ( "/".$pattern."/i", $trackback->comment_content , $match ) ){
 | 
|---|
| 821 |                                 $title = $match[1];
 | 
|---|
| 822 |                                 $content = $match[2];
 | 
|---|
| 823 |                         }
 | 
|---|
| 824 |                         if (empty($title)) $title = $trackback->comment_author;
 | 
|---|
| 825 | 
 | 
|---|
| 826 | 
 | 
|---|
| 827 |                         $row_data = array(
 | 
|---|
| 828 |                                 'ID'            => $trackback->comment_ID ,
 | 
|---|
| 829 |                                 'post_ID'       => $trackback->comment_post_ID ,
 | 
|---|
| 830 |                                 'site_name' => $trackback->comment_author ,
 | 
|---|
| 831 |                                 'site_url' => $trackback->comment_author_url ,
 | 
|---|
| 832 |                                 'title' => $title ,
 | 
|---|
| 833 |                                 'content' => $content ,
 | 
|---|
| 834 |                                 'date'          => $trackback->comment_timestamp ,
 | 
|---|
| 835 |                                 'date_gmt'              => $trackback->comment_timestamp_gmt ,
 | 
|---|
| 836 |                                 'agent'         => $trackback->comment_agent ,
 | 
|---|
| 837 |                                 'type'          => $trackback->comment_type ,
 | 
|---|
| 838 |                                 'IP'            => $trackback->comment_author_IP ,
 | 
|---|
| 839 |                         );
 | 
|---|
| 840 |                         array_push($ret,$row_data);
 | 
|---|
| 841 |                 }
 | 
|---|
| 842 |                 return $ret;
 | 
|---|
| 843 |         }
 | 
|---|
| 844 |                         return false;
 | 
|---|
| 845 | }
 | 
|---|
| 846 | 
 | 
|---|
| 847 | function xpress_get_calendar($args = '') {
 | 
|---|
| 848 |         global $wpdb, $m, $monthnum, $year, $wp_locale, $posts , $xoops_config;
 | 
|---|
| 849 | 
 | 
|---|
| 850 |         $defaults = array(
 | 
|---|
| 851 |                 sun_color => '#DB0000',
 | 
|---|
| 852 |                 sat_color => '#004D99',
 | 
|---|
| 853 |                 initial => true
 | 
|---|
| 854 |         );
 | 
|---|
| 855 |         $r = wp_parse_args( $args, $defaults );
 | 
|---|
| 856 | 
 | 
|---|
| 857 |         extract( $r );
 | 
|---|
| 858 |         
 | 
|---|
| 859 |         ob_start();
 | 
|---|
| 860 |                 get_calendar(true);
 | 
|---|
| 861 |                 $calendar = ob_get_contents();
 | 
|---|
| 862 |         ob_end_clean();
 | 
|---|
| 863 |         $calendar = preg_replace('/<th abbr=/', '<th align="center"  abbr=', $calendar); //week name align center
 | 
|---|
| 864 |         $calendar = preg_replace('/<td>/', '<td align="center">', $calendar); //days align center
 | 
|---|
| 865 |         $calendar = preg_replace('/<td id="today">/', '<td id="today" align="center">', $calendar); //today align center
 | 
|---|
| 866 |         $calendar = preg_replace('/<span style="color:[^>]*>/', '', $calendar); //wp2011 color delete
 | 
|---|
| 867 |         $calendar = preg_replace('/<\/span>/', '', $calendar); //wp2011 color delete
 | 
|---|
| 868 | 
 | 
|---|
| 869 |         $week_begins = intval(get_option('start_of_week'));
 | 
|---|
| 870 |         $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>';
 | 
|---|
| 871 |         if(preg_match('/'. $head_pattrn . '/s' ,$calendar,$head_match)){
 | 
|---|
| 872 |                 $sun_index = 1 - $week_begins;
 | 
|---|
| 873 |                 if ($sun_index < 1) $sun_index = $sun_index +7;
 | 
|---|
| 874 |                 $sat_index = 7 - $week_begins;
 | 
|---|
| 875 |                 if ($sat_index < 1) $sat_index = $sat_index +7;
 | 
|---|
| 876 |                 
 | 
|---|
| 877 |                 $sun_head = $head_match[$sun_index];
 | 
|---|
| 878 |                 $sat_head = $head_match[$sat_index];
 | 
|---|
| 879 |                 
 | 
|---|
| 880 |                 $pattrn = '(<th[^>]*>)(.*)(<\/th>)';
 | 
|---|
| 881 |                 if(preg_match('/'. $pattrn . '/' ,$sun_head,$sun_match)){
 | 
|---|
| 882 |                         $sun_head_after = $sun_match[1] . '<span style="color: ' . $sun_color . '">' . $sun_match[2] . '</span>'. $sun_match[3];
 | 
|---|
| 883 |                         $calendar = str_replace($sun_head,$sun_head_after,$calendar);
 | 
|---|
| 884 |                 }
 | 
|---|
| 885 |                 if(preg_match('/'. $pattrn . '/' ,$sat_head,$sat_match)){
 | 
|---|
| 886 |                         $sat_head_after = $sat_match[1] . '<span style="color: ' . $sat_color . '">' . $sat_match[2] . '</span>'. $sat_match[3];
 | 
|---|
| 887 |                         $calendar = str_replace($sat_head,$sat_head_after,$calendar);
 | 
|---|
| 888 |                 }
 | 
|---|
| 889 |         }
 | 
|---|
| 890 |         return $calendar;
 | 
|---|
| 891 | }
 | 
|---|
| 892 | 
 | 
|---|
| 893 | function xpress_grobal_recent_posts($num = 10,$exclusion_blog = 0, $shown_for_each_blog = false)
 | 
|---|
| 894 | {
 | 
|---|
| 895 |         global $wpdb, $wp_rewrite , $switched , $blog_id;
 | 
|---|
| 896 |         if (empty($date_format)) $date_format = get_settings('date_format');
 | 
|---|
| 897 |         if (empty($time_format)) $time_format = get_settings('time_format');
 | 
|---|
| 898 |         $exclusion = explode(',' , $exclusion_blog);
 | 
|---|
| 899 | 
 | 
|---|
| 900 | 
 | 
|---|
| 901 |         $first_blogid = $blog_id;
 | 
|---|
| 902 |         $num = (int)$num;
 | 
|---|
| 903 | //      $wp_query->in_the_loop = true;          //for use the_tags() in multi lopp 
 | 
|---|
| 904 |         $data_array = array();
 | 
|---|
| 905 |         if (xpress_is_multiblog()){
 | 
|---|
| 906 |                 $blogs = get_blog_list(0,'all');
 | 
|---|
| 907 |                 foreach ($blogs AS $blog) {
 | 
|---|
| 908 |                         if (!in_array(0, $exclusion) && in_array($blog['blog_id'], $exclusion)) continue;
 | 
|---|
| 909 |                         switch_to_blog($blog['blog_id']);
 | 
|---|
| 910 |                         $wp_rewrite->init();  // http://core.trac.wordpress.org/ticket/12040 is solved, it is unnecessary.
 | 
|---|
| 911 | 
 | 
|---|
| 912 |                                 if (empty($num)){
 | 
|---|
| 913 |                                         query_posts("post_status=publish");
 | 
|---|
| 914 |                                 } else {
 | 
|---|
| 915 |                                         query_posts("showposts=$num&post_status=publish");
 | 
|---|
| 916 |                                 }
 | 
|---|
| 917 |                                 if (have_posts()){
 | 
|---|
| 918 |                                         while(have_posts()){
 | 
|---|
| 919 |                                                 $data = new stdClass();
 | 
|---|
| 920 |                                                 
 | 
|---|
| 921 |                                                 the_post();
 | 
|---|
| 922 |                                                 ob_start();
 | 
|---|
| 923 |                                                         the_ID();
 | 
|---|
| 924 |                                                         $data->post_id = ob_get_contents();
 | 
|---|
| 925 |                                                 ob_end_clean();
 | 
|---|
| 926 |                                                 
 | 
|---|
| 927 |                                                 $data->blog_id = $blog['blog_id'];
 | 
|---|
| 928 |                                                 $data->blog_name = get_bloginfo('name');
 | 
|---|
| 929 |                                                 $data->blog_url = get_bloginfo('url');
 | 
|---|
| 930 |                                                 $data->blog_link = '<a href="' . $data->blog_url . '">' . $data->blog_name . '</a>' ;
 | 
|---|
| 931 | 
 | 
|---|
| 932 | 
 | 
|---|
| 933 |                                                 ob_start();
 | 
|---|
| 934 |                                                         the_title();
 | 
|---|
| 935 |                                                         $data->title = ob_get_contents();
 | 
|---|
| 936 |                                                 ob_end_clean();
 | 
|---|
| 937 |                                                 $data->post_permalink = get_blog_permalink($data->brog_id, $data->post_id);
 | 
|---|
| 938 |                                                 $data->title_link = '<a href="' . $data->post_permalink . '">' . $data->title . '</a>' ;
 | 
|---|
| 939 | 
 | 
|---|
| 940 |                                                 ob_start();
 | 
|---|
| 941 |                                                         the_author_posts_link();
 | 
|---|
| 942 |                                                         $data->post_author = ob_get_contents();
 | 
|---|
| 943 |                                                 ob_end_clean();
 | 
|---|
| 944 | 
 | 
|---|
| 945 |                                                 ob_start();
 | 
|---|
| 946 |                                                         the_category(' • ');
 | 
|---|
| 947 |                                                         $data->post_category = ob_get_contents();
 | 
|---|
| 948 |                                                 ob_end_clean(); 
 | 
|---|
| 949 |                                                 
 | 
|---|
| 950 |                                                 if (function_exists('the_tags')){
 | 
|---|
| 951 |                                                         ob_start();
 | 
|---|
| 952 |                                                                 the_tags(__('Tags:', 'xpress') . ' ',' • ','');
 | 
|---|
| 953 |                                                                 $data->post_tags = ob_get_contents();
 | 
|---|
| 954 |                                                         ob_end_clean(); 
 | 
|---|
| 955 |                                                 } else {
 | 
|---|
| 956 |                                                         $data->tags = '';
 | 
|---|
| 957 |                                                 }
 | 
|---|
| 958 | 
 | 
|---|
| 959 |                                                 $data->the_content = xpress_the_content('echo=0');
 | 
|---|
| 960 |                                                 
 | 
|---|
| 961 |                                                 ob_start();
 | 
|---|
| 962 |                                                         the_content();
 | 
|---|
| 963 |                                                         $data->the_full_content = ob_get_contents();
 | 
|---|
| 964 |                                                 ob_end_clean();
 | 
|---|
| 965 |                                                 
 | 
|---|
| 966 |                                                 ob_start();
 | 
|---|
| 967 |                                                         the_modified_date($date_format);
 | 
|---|
| 968 |                                                         $data->post_modified_date = ob_get_contents();
 | 
|---|
| 969 |                                                 ob_end_clean();
 | 
|---|
| 970 |                                                         
 | 
|---|
| 971 |                                                 ob_start();
 | 
|---|
| 972 |                                                         the_modified_date($time_format);
 | 
|---|
| 973 |                                                         $data->post_modified_time = ob_get_contents();
 | 
|---|
| 974 |                                                 ob_end_clean();
 | 
|---|
| 975 |                                                 $data->post_modified_date_time = $data->post_modified_date . ' ' . $data->post_modified_time;
 | 
|---|
| 976 |                                                 
 | 
|---|
| 977 |                                                 ob_start();
 | 
|---|
| 978 |                                                         the_time('U');
 | 
|---|
| 979 |                                                         $data->post_unix_time = ob_get_contents();
 | 
|---|
| 980 |                                                 ob_end_clean();
 | 
|---|
| 981 |                                                 
 | 
|---|
| 982 |                                                 ob_start();
 | 
|---|
| 983 |                                                         the_time($date_format);
 | 
|---|
| 984 |                                                         $data->post_date = ob_get_contents();
 | 
|---|
| 985 |                                                 ob_end_clean();
 | 
|---|
| 986 |                                                 
 | 
|---|
| 987 |                                                 ob_start();
 | 
|---|
| 988 |                                                         the_time($time_format);
 | 
|---|
| 989 |                                                         $data->post_time = ob_get_contents();
 | 
|---|
| 990 |                                                 ob_end_clean();
 | 
|---|
| 991 |                                                 
 | 
|---|
| 992 |                                                 $data->post_date_time = $data->post_date . ' ' . $data->post_time;
 | 
|---|
| 993 | 
 | 
|---|
| 994 |                                                 ob_start();
 | 
|---|
| 995 |                                                         comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)'));
 | 
|---|
| 996 |                                                         $data->comments_link = ob_get_contents();
 | 
|---|
| 997 |                                                 ob_end_clean();
 | 
|---|
| 998 |                                                 
 | 
|---|
| 999 |                                                 $data->post_views = xpress_post_views_count('post_id=' . $data->post_id . '&blogid=' . $data->brog_id . '&format=' . __('Views :%d', 'xpress'). '&echo=0');
 | 
|---|
| 1000 |                                                 if (function_exists('the_qf_get_thumb_one')){
 | 
|---|
| 1001 |                                                         $data->post_thumbnail = the_qf_get_thumb_one("num=0&width=120&tag=1","",$data->the_full_content);
 | 
|---|
| 1002 |                                                 } else {
 | 
|---|
| 1003 |                                                         $data->post_thumbnail = get_the_post_thumbnail(null,'thumbnail');
 | 
|---|
| 1004 |                                                 }
 | 
|---|
| 1005 |                                                 $data->author_avatar =get_avatar(get_the_author_meta('ID'),$size = '32');
 | 
|---|
| 1006 | 
 | 
|---|
| 1007 |                                                 $data_array[] = $data;
 | 
|---|
| 1008 |                                 }  // end whilwe
 | 
|---|
| 1009 |                                 } // end if
 | 
|---|
| 1010 |                         restore_current_blog();
 | 
|---|
| 1011 | //                      $wp_rewrite->init();
 | 
|---|
| 1012 |                 } // end foreach
 | 
|---|
| 1013 | //              switch_to_blog($first_blogid);
 | 
|---|
| 1014 |                 $wp_rewrite->init(); // http://core.trac.wordpress.org/ticket/12040 is solved, it is unnecessary.
 | 
|---|
| 1015 | 
 | 
|---|
| 1016 |                 restore_current_blog();
 | 
|---|
| 1017 |         }
 | 
|---|
| 1018 |         if (!$shown_for_each_blog){
 | 
|---|
| 1019 |                 usort($data_array, "the_time_cmp");
 | 
|---|
| 1020 |                 if (!empty($num)){
 | 
|---|
| 1021 |                         $data_array = array_slice($data_array,0,$num);
 | 
|---|
| 1022 |                 }
 | 
|---|
| 1023 |         }
 | 
|---|
| 1024 |         return $data_array;
 | 
|---|
| 1025 | }
 | 
|---|
| 1026 | function the_time_cmp($a, $b)
 | 
|---|
| 1027 | {
 | 
|---|
| 1028 |     return - strcasecmp($a->post_unix_time, $b->post_unix_time);
 | 
|---|
| 1029 | }
 | 
|---|
| 1030 | 
 | 
|---|
| 1031 | function xpress_get_blog_option($option_name,$b_id = 1)
 | 
|---|
| 1032 | {
 | 
|---|
| 1033 |         global $wpdb;
 | 
|---|
| 1034 |         $db_prefix = get_wp_prefix();
 | 
|---|
| 1035 |         
 | 
|---|
| 1036 |         if (empty($b_id)) $b_id =1;
 | 
|---|
| 1037 |         $blog_prefix = '';
 | 
|---|
| 1038 |         if ($b_id >1) $blog_prefix = $b_id . '_';
 | 
|---|
| 1039 |         $options_tb = $db_prefix . $blog_prefix .'options';
 | 
|---|
| 1040 | 
 | 
|---|
| 1041 |         $sql = "SELECT option_value FROM $options_tb WHERE option_name = $option_name";
 | 
|---|
| 1042 |         $ret_val = $wpdb->get_var($sql);
 | 
|---|
| 1043 |         return $ret_val;
 | 
|---|
| 1044 | }
 | 
|---|
| 1045 | 
 | 
|---|
| 1046 | function xpress_create_new_blog_link($args ='' ) {
 | 
|---|
| 1047 |         global $xoops_config;
 | 
|---|
| 1048 | 
 | 
|---|
| 1049 |         global $current_user;
 | 
|---|
| 1050 |         $defaults = array(
 | 
|---|
| 1051 |                 'echo' => 1
 | 
|---|
| 1052 |         );
 | 
|---|
| 1053 |         $r = wp_parse_args( $args, $defaults );
 | 
|---|
| 1054 | 
 | 
|---|
| 1055 |         extract( $r );
 | 
|---|
| 1056 |         $result = xpress_create_new_blog();
 | 
|---|
| 1057 |         if (!empty($result)){
 | 
|---|
| 1058 |                 $output = $result['link'];
 | 
|---|
| 1059 |         } else {
 | 
|---|
| 1060 |                 $output = '';
 | 
|---|
| 1061 |         }
 | 
|---|
| 1062 |         
 | 
|---|
| 1063 |         if ($echo)
 | 
|---|
| 1064 |                 echo $output;
 | 
|---|
| 1065 |         else
 | 
|---|
| 1066 |                 return $output;
 | 
|---|
| 1067 | }
 | 
|---|
| 1068 | 
 | 
|---|
| 1069 | function xpress_create_new_blog() {
 | 
|---|
| 1070 |         global $xoops_config;
 | 
|---|
| 1071 |         global $current_user;
 | 
|---|
| 1072 |         $ret = array();
 | 
|---|
| 1073 | 
 | 
|---|
| 1074 |         if (xpress_is_multiblog() && is_user_logged_in()){
 | 
|---|
| 1075 |                 $primary_blog_id = @$current_user->primary_blog;
 | 
|---|
| 1076 |                 if (!empty($primary_blog_id)) return $ret;
 | 
|---|
| 1077 |                 $active_signup = get_site_option( 'registration' );
 | 
|---|
| 1078 |                 if ( !$active_signup ) $active_signup = 'none';
 | 
|---|
| 1079 |                 switch ($active_signup){
 | 
|---|
| 1080 |                         case 'all':
 | 
|---|
| 1081 |                         case 'blog':
 | 
|---|
| 1082 |                                 $ret['url'] = $xoops_config->module_url . '/wp-signup.php';
 | 
|---|
| 1083 |                                 $ret['menu_url'] = 'wp-signup.php';
 | 
|---|
| 1084 |                                 $ret['title'] = __('Create New Blog','xpressme');
 | 
|---|
| 1085 |                                 $ret['link'] = '<a href="' . $ret['url'] . '">' . $ret['title'] . '</a>';
 | 
|---|
| 1086 |                                 break;
 | 
|---|
| 1087 |                         case 'user':
 | 
|---|
| 1088 |                         case 'none':
 | 
|---|
| 1089 |                         default:
 | 
|---|
| 1090 |                 }
 | 
|---|
| 1091 |         }
 | 
|---|
| 1092 |         return $ret;
 | 
|---|
| 1093 | }
 | 
|---|
| 1094 | function xpress_primary_blog_link() {
 | 
|---|
| 1095 |         global $xoops_config;
 | 
|---|
| 1096 |         global $current_user;
 | 
|---|
| 1097 |         global $blog_id;
 | 
|---|
| 1098 |         $ret = array();
 | 
|---|
| 1099 | 
 | 
|---|
| 1100 |         if (xpress_is_multiblog() && is_user_logged_in()){
 | 
|---|
| 1101 |                 $blog_list = get_blog_list();
 | 
|---|
| 1102 |                 $root_path = get_blog_status(1,'path');
 | 
|---|
| 1103 |                 $primary_blog_id = @$current_user->primary_blog;
 | 
|---|
| 1104 |                 if(empty($primary_blog_id)) return $ret;
 | 
|---|
| 1105 |                 $primary_path = get_blog_status($primary_blog_id,'path');
 | 
|---|
| 1106 |                 $script = str_replace($root_path, "", $primary_path);
 | 
|---|
| 1107 |                 if ($primary_blog_id !== $blog_id){
 | 
|---|
| 1108 |                         $ret['url'] = get_blogaddress_by_id($primary_blog_id);
 | 
|---|
| 1109 |                         $ret['menu_url'] = $script;
 | 
|---|
| 1110 |                         $ret['title'] = __('Your Primary Blog','xpressme');
 | 
|---|
| 1111 |                         $ret['link'] = '<a href="' . $ret['url'] . '">' . $ret['title'] . '</a>';
 | 
|---|
| 1112 |                 }
 | 
|---|
| 1113 |         }
 | 
|---|
| 1114 |         return $ret;
 | 
|---|
| 1115 | }
 | 
|---|
| 1116 | 
 | 
|---|
| 1117 | ?> | 
|---|