Changeset 10214 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
- Timestamp:
- 08/28/2020 05:36:38 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
r7798 r10214 59 59 add_filter( 'wp_ajax_delete-support-rep', array( __NAMESPACE__ . '\Metabox\Support_Reps', 'remove_support_rep' ) ); 60 60 add_action( 'wp_ajax_plugin-author-lookup', array( __NAMESPACE__ . '\Metabox\Author', 'lookup_author' ) ); 61 62 add_action( 'save_post', array( __NAMESPACE__ . '\Metabox\Release_Confirmation', 'save_post' ) ); 61 63 } 62 64 … … 410 412 411 413 add_meta_box( 414 'plugin-release-confirmation', 415 __( 'Plugin Release Confirmation', 'wporg-plugins' ), 416 array( __NAMESPACE__ . '\Metabox\Release_Confirmation', 'display' ), 417 'plugin', 'normal', 'high' 418 ); 419 420 add_meta_box( 412 421 'plugin-author', 413 422 __( 'Author Card', 'wporg-plugins' ),
Note: See TracChangeset
for help on using the changeset viewer.