Code Duplication    Length = 13-15 lines in 2 locations

_inc/lib/admin-pages/class.jetpack-react-page.php 1 location

@@ 92-104 (lines=13) @@
89
			. "</script>";
90
	}
91
92
	function jetpack_menu_order( $menu_order ) {
93
		$jp_menu_order = array();
94
95
		foreach ( $menu_order as $index => $item ) {
96
			if ( $item != 'jetpack' )
97
				$jp_menu_order[] = $item;
98
99
			if ( $index == 0 )
100
				$jp_menu_order[] = 'jetpack';
101
		}
102
103
		return $jp_menu_order;
104
	}
105
106
	// Render the configuration page for the module if it exists and an error
107
	// screen if the module is not configurable

class.jetpack.php 1 location

@@ 3533-3547 (lines=15) @@
3530
		return true;
3531
	}
3532
3533
	function jetpack_menu_order( $menu_order ) {
3534
		$jp_menu_order = array();
3535
3536
		foreach ( $menu_order as $index => $item ) {
3537
			if ( $item != 'jetpack' ) {
3538
				$jp_menu_order[] = $item;
3539
			}
3540
3541
			if ( $index == 0 ) {
3542
				$jp_menu_order[] = 'jetpack';
3543
			}
3544
		}
3545
3546
		return $jp_menu_order;
3547
	}
3548
3549
	function admin_head() {
3550
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) )