WP Admin UI Customize - Version 1.3.9.1

Version Description

  • Fixed bug : Regist metaboxes for remove metaboxes.
Download this release

Release Info

Developer gqevu6bsiz
Plugin Icon wp plugin WP Admin UI Customize
Version 1.3.9.1
Comparing to
See all releases

Code changes from version 1.3.9 to 1.3.9.1

Files changed (3) hide show
  1. inc/setting_default.php +1 -1
  2. readme.txt +6 -3
  3. wp-admin-ui-customize.php +15 -15
inc/setting_default.php CHANGED
@@ -61,7 +61,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
61
  <div class="stuffbox" id="aboutbox">
62
  <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd_p ); ?></span></h3>
63
  <div class="inside">
64
- <p><?php _e( 'Version checked' , $this->ltd_p ); ?> : 3.5.2 - 3.6</p>
65
  <ul>
66
  <li><a href="<?php echo $this->Site; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Plugin\'s site' , $this->ltd_p ); ?></a></li>
67
  <li><a href="<?php echo $this->AuthorUrl; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Developer\'s site' , $this->ltd_p ); ?></a></li>
61
  <div class="stuffbox" id="aboutbox">
62
  <h3><span class="hndle"><?php _e( 'About plugin' , $this->ltd_p ); ?></span></h3>
63
  <div class="inside">
64
+ <p><?php _e( 'Version checked' , $this->ltd_p ); ?> : 3.5.2 - 3.6.1</p>
65
  <ul>
66
  <li><a href="<?php echo $this->Site; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Plugin\'s site' , $this->ltd_p ); ?></a></li>
67
  <li><a href="<?php echo $this->AuthorUrl; ?>?utm_source=use_plugin&utm_medium=side&utm_content=<?php echo $this->ltd; ?>&utm_campaign=<?php echo str_replace( '.' , '_' , $this->Ver ); ?>" target="_blank"><?php _e( 'Developer\'s site' , $this->ltd_p ); ?></a></li>
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
- Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_3_9
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar
5
  Requires at least: 3.5.2
6
- Tested up to: 3.6
7
- Stable tag: 1.3.9
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -49,6 +49,9 @@ These to Customization is possible.
49
 
50
  == Changelog ==
51
 
 
 
 
52
  = 1.3.9 =
53
  * Added: Remove metaboxes on Custom post types.
54
  * Change mechanism : Registration method of metabox.
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
+ Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_3_9_1
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar
5
  Requires at least: 3.5.2
6
+ Tested up to: 3.6.1
7
+ Stable tag: 1.3.9.1
8
  License: GPL2
9
 
10
  Customize the management screen UI.
49
 
50
  == Changelog ==
51
 
52
+ = 1.3.9.1 =
53
+ * Fixed bug : Regist metaboxes for remove metaboxes.
54
+
55
  = 1.3.9 =
56
  * Added: Remove metaboxes on Custom post types.
57
  * Change mechanism : Registration method of metabox.
wp-admin-ui-customize.php CHANGED
@@ -2,10 +2,10 @@
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
- Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_9
6
- Version: 1.3.9
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_9
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -52,7 +52,7 @@ class WP_Admin_UI_Customize
52
 
53
 
54
  function __construct() {
55
- $this->Ver = '1.3.9';
56
  $this->Name = 'WP Admin UI Customize';
57
  $this->Dir = plugin_dir_path( __FILE__ );
58
  $this->Url = plugin_dir_url( __FILE__ );
@@ -448,17 +448,17 @@ class WP_Admin_UI_Customize
448
 
449
  } else {
450
 
451
- if( !empty( $GetData["metaboxes"][$post_type] ) ) {
452
- $Update = $GetData;
453
- }
454
- foreach( $Metaboxes as $context => $meta_box ) {
455
- foreach( $meta_box as $priority => $box ) {
456
- if( is_array( $box ) ) {
457
- foreach( $box as $metabox_id => $b ) {
458
- if( !empty( $GetData["metaboxes"][$post_type][$context][$priority][$b["id"]] ) ) {
459
- $Update["metaboxes"][$post_type][$context][$priority][$b["id"]] = strip_tags( $b["title"] );
460
- } else {
461
- $Update["metaboxes"][$post_type][$context][$priority][$b["id"]] = strip_tags( $b["title"] );
462
  }
463
  }
464
  }
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
+ Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_9_1
6
+ Version: 1.3.9.1
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_3_9_1
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
52
 
53
 
54
  function __construct() {
55
+ $this->Ver = '1.3.9.1';
56
  $this->Name = 'WP Admin UI Customize';
57
  $this->Dir = plugin_dir_path( __FILE__ );
58
  $this->Url = plugin_dir_url( __FILE__ );
448
 
449
  } else {
450
 
451
+ $Update = $GetData;
452
+ if( !empty( $Metaboxes ) ) {
453
+ foreach( $Metaboxes as $context => $meta_box ) {
454
+ foreach( $meta_box as $priority => $box ) {
455
+ if( is_array( $box ) ) {
456
+ foreach( $box as $metabox_id => $b ) {
457
+ if( !empty( $GetData["metaboxes"][$post_type][$context][$priority][$b["id"]] ) ) {
458
+ $Update["metaboxes"][$post_type][$context][$priority][$b["id"]] = strip_tags( $b["title"] );
459
+ } else {
460
+ $Update["metaboxes"][$post_type][$context][$priority][$b["id"]] = strip_tags( $b["title"] );
461
+ }
462
  }
463
  }
464
  }