Changeset 794908
- Timestamp:
- 10/28/2013 05:16:24 PM (12 years ago)
- Location:
- extended-categories-widget/trunk
- Files:
-
- 6 edited
-
2.8/class/avh-ec.core.php (modified) (1 diff)
-
3.3/class/avh-ec.core.php (modified) (1 diff)
-
3.6/class/avh-ec.core.php (modified) (3 diffs)
-
3.6/class/avh-ec.widgets.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
widget_extended_categories.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
extended-categories-widget/trunk/2.8/class/avh-ec.core.php
r790493 r794908 28 28 $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); 29 29 30 $this->version = '3.8. 4';30 $this->version = '3.8.5'; 31 31 $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; 32 32 $this->db_options_core = 'avhec'; -
extended-categories-widget/trunk/3.3/class/avh-ec.core.php
r790493 r794908 28 28 $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); 29 29 30 $this->version = '3.8. 4';30 $this->version = '3.8.5'; 31 31 $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; 32 32 $this->db_options_core = 'avhec'; -
extended-categories-widget/trunk/3.6/class/avh-ec.core.php
r790493 r794908 35 35 $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); 36 36 37 $this->version = '3.8. 4';37 $this->version = '3.8.5'; 38 38 $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; 39 39 $this->db_options_core = 'avhec'; … … 321 321 * @return string HTML content only if 'echo' argument is 0. 322 322 */ 323 public function avh_wp_dropdown_categories($args = array() , $selectedonly = false)323 public function avh_wp_dropdown_categories($args = array()) 324 324 { 325 325 $mywalker = new AVH_Walker_CategoryDropdown(); … … 427 427 * @return string HTML content only if 'echo' argument is 0. 428 428 */ 429 public function avh_wp_list_categories($args = array() , $selectedonly = false)429 public function avh_wp_list_categories($args = array()) 430 430 { 431 431 $mywalker = new AVHEC_Walker_Category(); -
extended-categories-widget/trunk/3.6/class/avh-ec.widgets.php
r790493 r794908 105 105 if ($style == 'list') { 106 106 echo '<ul>'; 107 $this->core->avh_wp_list_categories($cat_args , $selectedonly);107 $this->core->avh_wp_list_categories($cat_args); 108 108 echo '</ul>'; 109 109 } else { 110 $this->core->avh_wp_dropdown_categories($cat_args , $selectedonly);110 $this->core->avh_wp_dropdown_categories($cat_args); 111 111 echo '<script type=\'text/javascript\'>' . "\n"; 112 112 echo '/* <![CDATA[ */' . "\n"; … … 629 629 extract($args); 630 630 631 $c = isset($instance['count']);632 $e = isset($instance['hide_empty']);633 $h = isset($instance['hierarchical']);634 $use_desc_for_title = isset($instance['use_desc_for_title']);631 $c = $instance['count']; 632 $e = $instance['hide_empty']; 633 $h = $instance['hierarchical']; 634 $use_desc_for_title = $instance['use_desc_for_title']; 635 635 $s = isset($instance['sort_column']) ? $instance['sort_column'] : 'name'; 636 636 $o = isset($instance['sort_order']) ? $instance['sort_order'] : 'asc'; 637 $r = isset($instance['rssfeed'])? 'RSS' : '';638 $i = isset($instance['rssimage'])? $instance['rssimage'] : '';637 $r = $instance['rssfeed'] ? 'RSS' : ''; 638 $i = $instance['rssimage'] ? $instance['rssimage'] : ''; 639 639 640 640 if (empty($r)) { -
extended-categories-widget/trunk/readme.txt
r790493 r794908 5 5 Requires at least: 2.3 6 6 Tested up to: 3.6.1 7 Stable tag: 3.8. 47 Stable tag: 3.8.5 8 8 9 9 The AVH Extended Categories Widgets gives you three widgets for displaying categories. … … 140 140 141 141 == Changelog == 142 = Version 3.8.5 = 143 * Bugfix: Options of the group widgets are not obeyed. 144 142 145 = Version 3.8.4 = 143 146 * Bugfix: Options of the widgets are not obeyed. -
extended-categories-widget/trunk/widget_extended_categories.php
r790493 r794908 4 4 * Plugin URI: http://blog.avirtualhome.com/wordpress-plugins 5 5 * Description: Replacement of the category widget to allow for greater customization of the category widget. 6 * Version: 3.8. 46 * Version: 3.8.5 7 7 * Author: Peter van der Does 8 8 * Author URI: http://blog.avirtualhome.com/
Note: See TracChangeset
for help on using the changeset viewer.