Changeset 14568
- Timestamp:
- 10/24/2025 06:52:54 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
r14264 r14568 747 747 ); 748 748 749 add_meta_box( 750 'cron-logs', 751 'Cron Job Logs', 752 array( __NAMESPACE__ . '\Metabox\Cron_Logs', 'display' ), 753 'plugin', 'normal', 'low' 754 ); 755 749 756 if ( 'new' !== $post->post_status && 'pending' != $post->post_status ) { 750 757 add_meta_box( … … 774 781 array( __NAMESPACE__ . '\Metabox\Author_Notice', 'display' ), 775 782 'plugin', 'normal', 'high' 776 );777 }778 779 // For highly trusted users, add a cron-jobs metabox for debugging plugin imports.780 if ( is_super_admin() || 'production' !== wp_get_environment_type() ) {781 add_meta_box(782 'cron-logs',783 'Cron Job Logs',784 array( __NAMESPACE__ . '\Metabox\Cron_Logs', 'display' ),785 'plugin', 'normal', 'low'786 783 ); 787 784 }
Note: See TracChangeset
for help on using the changeset viewer.