Changeset 3001445
- Timestamp:
- 11/25/2023 03:59:52 AM (2 years ago)
- Location:
- my-wp/trunk
- Files:
-
- 10 edited
-
classes/class.admin-toolbar.php (modified) (1 diff)
-
classes/class.frontend-toolbar.php (modified) (1 diff)
-
controller/modules/mywp.controller.module.admin.uploads.php (modified) (2 diffs)
-
developer/modules/mywp.developer.module.dev.frontend.php (modified) (1 diff)
-
mywp.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
setting/modules/mywp.setting.admin.post-edit.php (modified) (1 diff)
-
setting/modules/mywp.setting.admin.uploads.php (modified) (1 diff)
-
setting/modules/mywp.setting.admin.users.php (modified) (1 diff)
-
setting/modules/mywp.setting.debug.translations.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
my-wp/trunk/classes/class.admin-toolbar.php
r2547822 r3001445 157 157 158 158 $found_current_default = false; 159 $found_parent_default = false;160 $found_childs_default = false;159 $found_parent_default = array(); 160 $found_childs_default = array(); 161 161 162 162 foreach( $default_toolbar as $menu_location => $menus ) { -
my-wp/trunk/classes/class.frontend-toolbar.php
r2547822 r3001445 57 57 58 58 $found_current_default = false; 59 $found_parent_default = false;60 $found_childs_default = false;59 $found_parent_default = array(); 60 $found_childs_default = array(); 61 61 62 62 foreach( $default_toolbar as $menu_location => $menus ) { -
my-wp/trunk/controller/modules/mywp.controller.module.admin.uploads.php
r2890935 r3001445 148 148 149 149 <style> 150 body.wp-admin .wp-filter .media-toolbar-secondary { margin: 10px 0; } 151 body.wp-admin .wp-filter .media-grid-view-switch { display: none; } 150 152 body.wp-admin .wp-filter .filter-items { margin: 10px 0; } 151 153 body.wp-admin .wp-filter .filter-items .view-switch { display: none; } … … 206 208 207 209 <style> 210 body.wp-admin .search-form, 211 body.wp-admin .media-toolbar-primary.search-form { display: none; } 208 212 body.wp-admin #media-search-input { display: none; } 209 213 </style> -
my-wp/trunk/developer/modules/mywp.developer.module.dev.frontend.php
r2547822 r3001445 234 234 } 235 235 236 $debug_lists['current_template'] = sprintf( '<strong>%s</strong> (%s)' , basename( $template ) , $current_template ); 236 $file_name = false; 237 238 if( ! empty( $template ) ) { 239 240 $file_name = basename( $template ); 241 242 } 243 244 $debug_lists['current_template'] = sprintf( '<strong>%s</strong> (%s)' , $file_name , $current_template ); 237 245 238 246 $debug_lists['find_locate_templates'] = array(); -
my-wp/trunk/mywp.php
r2953020 r3001445 4 4 Plugin URI: https://mywpcustomize.com/ 5 5 Description: My WP is powerful admin and frontend customize and debug and extendable plugin. 6 Version: 1.22. 06 Version: 1.22.1 7 7 Author: gqevu6bsiz 8 8 Author URI: http://gqevu6bsiz.chicappa.jp/ 9 9 Requires at least: 4.7 10 Tested up to: 6. 310 Tested up to: 6.4 11 11 Text Domain: my-wp 12 12 Domain Path: /languages/ … … 43 43 44 44 define( 'MYWP_NAME' , 'My WP' ); 45 define( 'MYWP_VERSION' , '1.22. 0' );45 define( 'MYWP_VERSION' , '1.22.1' ); 46 46 define( 'MYWP_PLUGIN_FILE' , __FILE__ ); 47 47 define( 'MYWP_PLUGIN_BASENAME' , plugin_basename( MYWP_PLUGIN_FILE ) ); -
my-wp/trunk/readme.txt
r2953020 r3001445 3 3 Tags: mywp, admin, backend, frontend, customize, dashboard, debug, white label, sidebar, admin sidebar, toolbar, admin toolbar, frontend toolbar, metabox, posts, edit-post, uploads, users, user-edit, profile, comments 4 4 Requires at least: 4.7 5 Tested up to: 6. 36 Stable tag: 1.22. 05 Tested up to: 6.4 6 Stable tag: 1.22.1 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 46 46 47 47 == Changelog == 48 49 = 1.22.1 2023-11-25 = 50 * Updated: Compatibility for PHP 8.1 and WP 6.4. 51 * Fixed: Hide search box on uploads. 52 * Fixed: Print template file name when empty template. 53 * Fixed: Change label on post edit. 54 * Fixed: Print translation content when empty translation object. 48 55 49 56 = 1.22.0 2023-08-14 = -
my-wp/trunk/setting/modules/mywp.setting.admin.post-edit.php
r2890935 r3001445 252 252 253 253 <tr> 254 <th><?php echo _x( 'Add New' , 'post' ); ?></th> 254 <th> 255 <?php if( ! empty( $current_setting_post_type->labels->add_new ) ) : ?> 256 257 <?php echo esc_html( $current_setting_post_type->labels->add_new ); ?> 258 259 <?php else : ?> 260 261 <?php echo _x( 'Add New' , 'post' ); ?> 262 263 <?php endif; ?> 264 </th> 255 265 <td> 256 266 <label> -
my-wp/trunk/setting/modules/mywp.setting.admin.uploads.php
r2890935 r3001445 295 295 </tr> 296 296 <tr> 297 <th><?php echo _x( 'Add New', 'user' ); ?></th>297 <th><?php echo esc_html__( 'Add New Media File' ); ?></th> 298 298 <td> 299 299 <label> -
my-wp/trunk/setting/modules/mywp.setting.admin.users.php
r2890935 r3001445 287 287 </tr> 288 288 <tr> 289 <th><?php echo _x( 'Add New', 'user'); ?></th>289 <th><?php echo esc_html( __( 'Add New User' ) ); ?></th> 290 290 <td> 291 291 <label> -
my-wp/trunk/setting/modules/mywp.setting.debug.translations.php
r2733956 r3001445 79 79 </th> 80 80 <td> 81 <p><code><?php echo $translation_object->get_filename(); ?></code></p> 81 <?php if( $translation_object instanceof MO ) : ?> 82 83 <p><code><?php echo esc_html( $translation_object->get_filename() ); ?></code></p> 84 85 <?php else : ?> 86 87 <p><?php echo esc_html( __( 'Unknown translation file.' , 'my-wp' ) ); ?></p> 88 89 <?php endif; ?> 90 82 91 <textarea readonly="readonly" class="large-text" style="height: 400px;"><?php print_r( $translation_object->entries ); ?></textarea> 92 83 93 </td> 84 94 </tr>
Note: See TracChangeset
for help on using the changeset viewer.