Adminimize - Version 1.8.3

Version Description

(04/07/2013) = * Fix for use it with bbPress * Small minor changes

Download this release

Release Info

Developer Bueltge
Plugin Icon wp plugin Adminimize
Version 1.8.3
Comparing to
See all releases

Code changes from version 1.8.2 to 1.8.3

Files changed (2) hide show
  1. adminimize.php +14 -2
  2. readme.txt +7 -3
adminimize.php CHANGED
@@ -10,9 +10,9 @@
10
  * Text Domain: adminimize
11
  * Domain Path: /languages
12
  * Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
13
- * Author: Frank Bültge
14
  * Author URI: http://bueltge.de/
15
- * Version: 1.8.2
16
  * License: GPLv3
17
  */
18
 
@@ -161,6 +161,12 @@ function _mw_adminimize_get_all_user_roles() {
161
  }
162
  }
163
 
 
 
 
 
 
 
164
  return $user_roles;
165
  }
166
 
@@ -185,6 +191,12 @@ function _mw_adminimize_get_all_user_roles_names() {
185
  array_push( $user_roles_names, $data );
186
  }
187
 
 
 
 
 
 
 
188
  return $user_roles_names;
189
  }
190
 
10
  * Text Domain: adminimize
11
  * Domain Path: /languages
12
  * Description: Visually compresses the administratrive meta-boxes so that more admin page content can be initially seen. The plugin that lets you hide 'unnecessary' items from the WordPress administration menu, for alle roles of your install. You can also hide post meta controls on the edit-area to simplify the interface. It is possible to simplify the admin in different for all roles.
13
+ * Author: Frank Bültge
14
  * Author URI: http://bueltge.de/
15
+ * Version: 1.8.3
16
  * License: GPLv3
17
  */
18
 
161
  }
162
  }
163
 
164
+ // exclude the new bbPress roles
165
+ $user_roles = array_diff(
166
+ $user_roles,
167
+ array( 'bbp_keymaster', 'bbp_moderator', 'bbp_participant', 'bbp_spectator', 'bbp_blocked' )
168
+ );
169
+
170
  return $user_roles;
171
  }
172
 
191
  array_push( $user_roles_names, $data );
192
  }
193
 
194
+ // exclude the new bbPress roles
195
+ $user_roles_names = array_diff(
196
+ $user_roles_names,
197
+ array( __( 'Keymaster', 'bbpress' ), __( 'Moderator', 'bbpress' ), __( 'Participant', 'bbpress' ), __( 'Spectator', 'bbpress' ), __( 'Blocked', 'bbpress' ) )
198
+ );
199
+
200
  return $user_roles_names;
201
  }
202
 
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: Bueltge, inpsyde
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4578111
4
  Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
5
- Requires at least: 2.5
6
- Tested up to: 3.6-alpha
7
- Stable tag: 1.8.2
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
@@ -89,6 +89,10 @@ See on [the official website](http://bueltge.de/wordpress-admin-theme-adminimize
89
  1. Adminimize Theme how in WordPress 2.3
90
 
91
  == Changelog ==
 
 
 
 
92
  = 1.8.2 (02/15/2013) =
93
  * Fix PHP Notice message for empty var, see [support](http://wordpress.org/support/topic/undefined-index-current_screen)
94
  * Changes for load files and functions only, if it necessary
2
  Contributors: Bueltge, inpsyde
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4578111
4
  Tags: color, scheme, theme, admin, dashboard, color scheme, plugin, interface, ui, metabox, hide, editor, minimal, menu, customization, interface, administration, lite, light, usability, lightweight, layout, zen
5
+ Requires at least: 3.0
6
+ Tested up to: 3.6-beta1
7
+ Stable tag: 1.8.3
8
 
9
  Adminimize is a WordPress plugin that lets you hide 'unnecessary' items from the WordPress backend and many many more ...
10
 
89
  1. Adminimize Theme how in WordPress 2.3
90
 
91
  == Changelog ==
92
+ = 1.8.3 (04/07/2013) =
93
+ * Fix for use it with bbPress
94
+ * Small minor changes
95
+
96
  = 1.8.2 (02/15/2013) =
97
  * Fix PHP Notice message for empty var, see [support](http://wordpress.org/support/topic/undefined-index-current_screen)
98
  * Changes for load files and functions only, if it necessary