| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function reregister_menu_items() { |
||
| 34 | global $menu, $submenu; |
||
| 35 | |||
| 36 | $menu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited |
||
| 37 | $submenu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited |
||
| 38 | |||
| 39 | add_menu_page( esc_attr__( 'Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'manage_options', 'https://wordpress.com/domains/manage/' . $this->domain, null, 'dashicons-admin-settings' ); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |