Changeset 12523 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/tools/class-author-cards.php
- Timestamp:
- 03/31/2023 04:37:30 AM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/tools/class-author-cards.php
r12507 r12523 27 27 private function __construct() { 28 28 add_action( 'admin_menu', array( $this, 'add_to_menu' ) ); 29 add_action( 'admin_page_access_denied', array( $this, 'admin_page_access_denied' ) ); 29 30 } 30 31 … … 43 44 44 45 add_action( "admin_print_styles-{$hook}", array( $this, 'enqueue_assets' ) ); 46 } 47 48 /** 49 * Redirect the old location. 50 */ 51 public function admin_page_access_denied() { 52 global $pagenow, $plugin_page; 53 if ( 54 isset( $pagenow, $plugin_page ) && 55 'tools.php' === $pagenow && 56 'authorcards' === $plugin_page 57 ) { 58 wp_safe_redirect( admin_url( "admin.php?page={$plugin_page}" ) ); 59 exit; 60 } 45 61 } 46 62
Note: See TracChangeset
for help on using the changeset viewer.