XPressME Integration Kit

Trac


Ignore:
Timestamp:
Nov 13, 2009, 6:38:28 PM (15 years ago)
Author:
toemon
Message:

ブロックオプション、カテゴリのマルチセレクトをカンマ区切りデータとして格納するようにした。 #243

Location:
trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/popular_posts_block_theme.php

    r418 r435  
    99        $time_format = empty( $options[5] ) ? '' : $options[5] ; 
    1010        $tag_select = $options[6] ; 
    11         $selected = array_slice($options, 7); // get allowed cats 
     11        $cat_select = empty( $options[7] ) ? '0' : $options[7] ; 
     12         
     13        $selected = explode(',' , $cat_select); 
    1214 
    1315        $mydirpath = get_xpress_dir_path(); 
     
    1517        if (empty($date_format)) $date_format = get_settings('date_format'); 
    1618        if (empty($time_format)) $time_format = get_settings('time_format'); 
    17         if (array_search(0,$selected)===0) { 
    18                 $cat_select = false; 
    19         }else { 
    20                 $cat_select = true;                      
    21         } 
    22         $cat_id = implode(',',$selected); 
     19        if (array_search(0,$selected)===0) $cat_select = 0; 
     20         
     21        $cat_select; 
    2322        $block = array(); 
    2423        $item_no = 0;    
     
    5857 
    5958                if ($cat_select) { 
    60                         $where .= " AND ($term_taxonomy.term_id IN ($cat_id))"; 
     59                        $where .= " AND ($term_taxonomy.term_id IN ($cat_select))"; 
    6160                } 
    6261                 
     
    7574                 
    7675                if ($cat_select) { 
    77                         $where .= " AND ($post2cat_tb.category_id IN ($cat_id))"; 
     76                        $where .= " AND ($post2cat_tb.category_id IN ($cat_select))"; 
    7877                } 
    7978        } 
  • trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php

    r429 r435  
    66        $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 
    77        $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_recent_posts_content_block.html' : trim( $options[1] ); 
    8         $day_select = ($options[2])?intval($options[2]):0; 
    9         $day_size = ($options[3])?intval($options[3]):0; 
    10         $disp_count =  ($options[4])?intval($options[4]):10; 
    11         $excerpt = empty( $options[5] ) ? false : true ; 
    12         $excerpt_size =  ($options[6])?intval($options[6]):100; 
    13         $date_format = empty( $options[7] ) ? '' : $options[7] ; 
    14         $time_format = empty( $options[8] ) ? '' : $options[8] ; 
    15         $tag_select = $options[9] ; 
    16     $selected = array_slice($options,10); // get allowed cats 
    17  
     8        $disp_count =  ($options[2])?intval($options[2]):10; 
     9        $excerpt = empty( $options[3] ) ? false : true ; 
     10        $excerpt_size =  ($options[4])?intval($options[4]):100; 
     11        $date_format = empty( $options[5] ) ? '' : $options[5] ; 
     12        $time_format = empty( $options[6] ) ? '' : $options[6] ; 
     13        $tag_select = $options[7] ; 
     14        $cat_select = empty( $options[8] ) ? '0' : $options[8] ; 
     15        $day_select = ($options[9])?intval($options[9]):0; 
     16        $day_size = ($options[10])?intval($options[10]):0; 
     17 
     18        $selected = explode(',' , $cat_select); 
     19         
    1820        $mydirpath = get_xpress_dir_path(); 
    1921         
     
    2123        if (empty($time_format)) $time_format = get_settings('time_format'); 
    2224        if(empty($tag_select)) $tag_where = ''; else $tag_where = "tag='$tag_select'&"; 
    23          
     25        if (array_search(0,$selected)===0) $cat_select = 0; 
     26 
    2427        $selected_author_id = xpress_selected_author_id('echo=0');       
    2528        if (!empty($selected_author_id)){ 
     
    3740        if (!is_null($wpdb)){ 
    3841                $wp_query->in_the_loop = true;          //for use the_tags() in multi lopp  
    39                 if (array_search(0,$selected)===0) { 
     42                if ($cat_select) { 
     43                        $r = new WP_Query($author_where . $tag_where ."cat=$cat_select&showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish"); 
     44                } else { 
    4045                        $r = new WP_Query($author_where . $tag_where ."showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish"); 
    41                 } else { 
    42                         $cat_id = implode(',',$selected); 
    43                         $r = new WP_Query($author_where . $tag_where ."cat=$cat_id&showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish"); 
    4446                } 
    4547                while($r->have_posts()){                         
  • trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/recent_posts_list_block_theme.php

    r272 r435  
    1010        $time_format = empty( $options[6] ) ? '' : $options[6] ; 
    1111        $tag_select = $options[7] ; 
    12         $selected = array_slice($options,8); // get allowed cats 
     12        $cat_select = empty( $options[8] ) ? '0' : $options[8] ; 
     13         
     14        $selected = explode(',' , $cat_select); 
    1315 
    1416        $mydirpath = get_xpress_dir_path(); 
     
    1719        if (empty($time_format)) $time_format = get_settings('time_format'); 
    1820        if(empty($tag_select)) $tag_where = ''; else $tag_where = "tag='$tag_select'&"; 
     21        if (array_search(0,$selected)===0) $cat_select = 0; 
    1922 
    2023        $selected_author_id = xpress_selected_author_id('echo=0');       
     
    3033        if (!is_null($wpdb)){ 
    3134                $wp_query->in_the_loop = true;          //for use the_tags() in multi lopp  
    32                 if (array_search(0,$selected)===0) { 
     35                if ($cat_select) { 
     36                        $r = new WP_Query($author_where . $tag_where . "cat=$cat_select&showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish"); 
     37                } else { 
    3338                        $r = new WP_Query($author_where . $tag_where ."showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish"); 
    34  
    35                 } else { 
    36                         $cat_id = implode(',',$selected); 
    37                         $r = new WP_Query($author_where . $tag_where . "cat=$cat_id&showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish"); 
    3839                } 
    3940                while($r->have_posts()){                         
Note: See TracChangeset for help on using the changeset viewer.