Changeset 120 for trunk/wp-content/themes/xpress_default/blocks
- Timestamp:
- Mar 18, 2009, 10:59:02 PM (16 years ago)
- Location:
- trunk/wp-content/themes/xpress_default/blocks
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/xpress_default/blocks/archives_block_theme.php
r110 r120 3 3 { 4 4 $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 5 $t ype = empty( $options[1] ) ? false : true;6 $ limit = empty( $options[2] ) ? '10' : $options[2];7 $ show_post_count = empty( $options[3] ) ? false : true ;8 $ drop_down = empty( $options[4] ) ? false : true ;9 $ this_template = empty( $options[5] ) ? 'db:'.$mydirname.'_archives_block.html' : trim( $options[3] );5 $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_archives_block.html' : trim( $options[1] ); 6 $type = empty( $options[2] ) ? false : true ; 7 $limit = empty( $options[3] ) ? '10' : $options[3] ; 8 $show_post_count = empty( $options[4] ) ? false : true ; 9 $drop_down = empty( $options[5] ) ? false : true ; 10 10 11 11 if ($type) { -
trunk/wp-content/themes/xpress_default/blocks/authors_block_theme.php
r110 r120 3 3 { 4 4 $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 5 $ optioncount = empty( $options[1] ) ? false : true;6 $ exclude_admin= empty( $options[2] ) ? false : true ;7 $ show_fullname= empty( $options[3] ) ? false : true ;8 $ hide_empty = empty( $options[4] ) ? false : true ;9 $ this_template = empty( $options[5] ) ? 'db:'.$mydirname.'_block_authors.html' : trim( $options[5] );5 $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_block_authors.html' : trim( $options[1] ); 6 $optioncount = empty( $options[2] ) ? false : true ; 7 $exclude_admin = empty( $options[3] ) ? false : true ; 8 $show_fullname = empty( $options[4] ) ? false : true ; 9 $hide_empty = empty( $options[5] ) ? false : true ; 10 10 $mydirpath = get_xpress_dir_path(); 11 11 -
trunk/wp-content/themes/xpress_default/blocks/calender_block_theme.php
r115 r120 3 3 { 4 4 $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 5 $ sun_color = empty( $options[1] ) ? '#DB0000' : $options[1];6 $s at_color = empty( $options[2] ) ? '#004D99' : $options[2] ;7 $ this_template = empty( $options[3] ) ? 'db:'.$mydirname.'_calender_block.html' : trim( $options[3] );5 $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_calender_block.html' : trim( $options[1] ); 6 $sun_color = empty( $options[2] ) ? '#DB0000' : $options[2] ; 7 $sat_color = empty( $options[3] ) ? '#004D99' : $options[3] ; 8 8 // $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname; 9 9 $mydirpath = get_xpress_dir_path(); -
trunk/wp-content/themes/xpress_default/blocks/popular_posts_block_theme.php
r109 r120 3 3 { 4 4 $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 5 $ disp_count = empty( $options[1] ) ? '10' : $options[1];6 $ show_month_range = empty( $options[2] ) ? '0' : $options[2] ;7 $ tag_select =$options[3] ;8 $ selected = array_slice($options,4); // get allowed cats9 $ this_template = empty( $options[5] ) ? 'db:'.$mydirname.'_block_popular.html' : trim( $options[5] );5 $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_block_popular.html' : trim( $options[1] ); 6 $disp_count = empty( $options[2] ) ? '10' : $options[2] ; 7 $show_month_range = empty( $options[3] ) ? '0' : $options[3] ; 8 $tag_select = $options[4] ; 9 $selected = array_slice($options,5); // get allowed cats 10 10 $mydirpath = get_xpress_dir_path(); 11 11 -
trunk/wp-content/themes/xpress_default/blocks/recent_comments_block_theme.php
r110 r120 5 5 { 6 6 $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 7 $ disp_count = empty( $options[1] ) ? '10' : $options[1];8 $disp_ length = empty( $options[2] ) ? '30' : $options[2] ;9 $ selected = array_slice($options,3); // get allowed cats10 $ this_template = empty( $options[4] ) ? 'db:'.$mydirname.'_recent_comments_block.html' : trim( $options[4] );7 $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_recent_comments_block.html' : trim( $options[1] ); 8 $disp_count = empty( $options[2] ) ? '10' : $options[2] ; 9 $disp_length = empty( $options[3] ) ? '30' : $options[3] ; 10 $selected = array_slice($options,4); // get allowed cats 11 11 // $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname; 12 12 $mydirpath = get_xpress_dir_path(); -
trunk/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php
r109 r120 5 5 { 6 6 $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 7 $ disp_count = ($options[1])?intval($options[1]):10;8 $ except = empty( $options[2] ) ? false : true;9 $except _size = ($options[3])?intval($options[3]):100;10 $ tag_select = $options[4];11 $selected = array_slice($options,5); // get allowed cats 12 $this_template = empty( $options[6] ) ? 'db:'.$mydirname.'_recent_posts_content_block.html' : trim( $options[6] ); 7 $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_recent_posts_content_block.html' : trim( $options[1] ); 8 $disp_count = ($options[2])?intval($options[2]):10; 9 $except = empty( $options[3] ) ? false : true ; 10 $except_size = ($options[4])?intval($options[4]):100; 11 $tag_select = $options[5] ; 12 $selected = array_slice($options,6); // get allowed cats 13 13 // $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname; 14 14 $mydirpath = get_xpress_dir_path(); -
trunk/wp-content/themes/xpress_default/blocks/recent_posts_list_block_theme.php
r109 r120 3 3 { 4 4 $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 5 $ disp_count = empty( $options[1] ) ? '10' : $options[1];6 $disp_ red = empty( $options[2] ) ? '1' : $options[2] ;7 $disp_ green = empty( $options[3] ) ? '7' : $options[3] ;8 $ tag_select =$options[4] ;9 $ selected = array_slice($options,5); // get allowed cats10 $ this_template = empty( $options[6] ) ? 'db:'.$mydirname.'_recent_posts_list_block.html' : trim( $options[6] );5 $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_recent_posts_list_block.html' : trim( $options[1] ); 6 $disp_count = empty( $options[2] ) ? '10' : $options[2] ; 7 $disp_red = empty( $options[3] ) ? '1' : $options[3] ; 8 $disp_green = empty( $options[4] ) ? '7' : $options[4] ; 9 $tag_select = $options[5] ; 10 $selected = array_slice($options,6); // get allowed cats 11 11 // $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname; 12 12 $mydirpath = get_xpress_dir_path();
Note: See TracChangeset
for help on using the changeset viewer.