AVH Extended Categories Widgets - Version 3.0.1

Version Description

Download this release

Release Info

Developer petervanderdoes
Plugin Icon wp plugin AVH Extended Categories Widgets
Version 3.0.1
Comparing to
See all releases

Code changes from version 3.0 to 3.0.1

2.8/class/avh-ec.admin.php CHANGED
@@ -38,9 +38,7 @@ class AVH_EC_Admin
38
  wp_register_script( 'avhec-categorygroup-js', AVHEC_PLUGIN_URL . '/js/avh-ec.categorygroup' . $suffix . '.js', array ('jquery' ), $this->core->version, true );
39
  wp_register_style( 'avhec-admin-css', AVHEC_PLUGIN_URL . '/css/avh-ec.admin.css', array ('wp-admin' ), $this->core->version, 'screen' );
40
 
41
- // Metaboxes for the Category Group on the post and page pages
42
- add_meta_box( 'avhec_category_group_box_ID', __( 'Category Group', 'avh-ec' ), array (&$this, 'metaboxPostCategoryGroup' ), 'post', 'side', 'core' );
43
- add_meta_box( 'avhec_category_group_box_ID', __( 'Category Group', 'avh-ec' ), array (&$this, 'metaboxPostCategoryGroup' ), 'page', 'side', 'core' );
44
 
45
  // Actions used for editing posts
46
  add_action( 'load-post.php', array (&$this, 'actionLoadPostPage' ) );
@@ -175,6 +173,10 @@ class AVH_EC_Admin
175
  function actionAdminMenu ()
176
  {
177
 
 
 
 
 
178
  // Add menu system
179
  $folder = $this->core->getBaseDirectory( AVHEC_PLUGIN_DIR );
180
  add_menu_page( 'AVH Extended Categories', 'AVH Extended Categories', 'manage_options', $folder, array (&$this, 'doMenuOverview' ) );
38
  wp_register_script( 'avhec-categorygroup-js', AVHEC_PLUGIN_URL . '/js/avh-ec.categorygroup' . $suffix . '.js', array ('jquery' ), $this->core->version, true );
39
  wp_register_style( 'avhec-admin-css', AVHEC_PLUGIN_URL . '/css/avh-ec.admin.css', array ('wp-admin' ), $this->core->version, 'screen' );
40
 
41
+
 
 
42
 
43
  // Actions used for editing posts
44
  add_action( 'load-post.php', array (&$this, 'actionLoadPostPage' ) );
173
  function actionAdminMenu ()
174
  {
175
 
176
+ // Metaboxes for the Category Group on the post and page pages
177
+ add_meta_box( 'avhec_category_group_box_ID', __( 'Category Group', 'avh-ec' ), array (&$this, 'metaboxPostCategoryGroup' ), 'post', 'side', 'core' );
178
+ add_meta_box( 'avhec_category_group_box_ID', __( 'Category Group', 'avh-ec' ), array (&$this, 'metaboxPostCategoryGroup' ), 'page', 'side', 'core' );
179
+
180
  // Add menu system
181
  $folder = $this->core->getBaseDirectory( AVHEC_PLUGIN_DIR );
182
  add_menu_page( 'AVH Extended Categories', 'AVH Extended Categories', 'manage_options', $folder, array (&$this, 'doMenuOverview' ) );
2.8/class/avh-ec.core.php CHANGED
@@ -23,7 +23,7 @@ class AVH_EC_Core
23
  */
24
  $catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
25
 
26
- $this->version = '3.0';
27
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
28
  $db_version = 2;
29
  $this->db_options_core = 'avhec';
23
  */
24
  $catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
25
 
26
+ $this->version = '3.0.1';
27
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
28
  $db_version = 2;
29
  $this->db_options_core = 'avhec';
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://blog.avirtualhome.com/wordpress-plugins/
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
  Tested up to: 2.9.1
7
- Stable tag: 3.0
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
@@ -100,6 +100,9 @@ None
100
 
101
  == Changelog ==
102
 
 
 
 
103
  = Version 3.0 =
104
  * Renamed the plug-in to AVH Extended Categories Widgets
105
  * Added new widget: Category Group. You can create groups with categories and associate the group with a post. The widget will show the categories from the group.
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
  Tested up to: 2.9.1
7
+ Stable tag: 3.0.1
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
100
 
101
  == Changelog ==
102
 
103
+ = Version 3.0.1 =
104
+ * Bugfix: Definition of the metabox for post/page in the wrong place
105
+
106
  = Version 3.0 =
107
  * Renamed the plug-in to AVH Extended Categories Widgets
108
  * Added new widget: Category Group. You can create groups with categories and associate the group with a post. The widget will show the categories from the group.
widget-pre2.8.php CHANGED
@@ -7,7 +7,7 @@ function widget_extended_categories_init() {
7
  }
8
 
9
  function widget_extended_categories($args, $number = 1) {
10
- $version = '2.3.3';
11
  // Check for version
12
  require (ABSPATH . WPINC . '/version.php');
13
  if ( version_compare($wp_version, '2.5.1', '<') ) {
7
  }
8
 
9
  function widget_extended_categories($args, $number = 1) {
10
+ $version = '3.0.1';
11
  // Check for version
12
  require (ABSPATH . WPINC . '/version.php');
13
  if ( version_compare($wp_version, '2.5.1', '<') ) {
widget_extended_categories.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: AVH Extended Categories Widgets
4
  Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
5
  Description: Replacement of the category widget to allow for greater customization of the category widget.
6
- Version: 3.0
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9
 
3
  Plugin Name: AVH Extended Categories Widgets
4
  Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
5
  Description: Replacement of the category widget to allow for greater customization of the category widget.
6
+ Version: 3.0.1
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9