| @@ 130-142 (lines=13) @@ | ||
| 127 | return $module_name; |
|
| 128 | } |
|
| 129 | ||
| 130 | function jetpack_menu_order( $menu_order ) { |
|
| 131 | $jp_menu_order = array(); |
|
| 132 | ||
| 133 | foreach ( $menu_order as $index => $item ) { |
|
| 134 | if ( $item != 'jetpack' ) |
|
| 135 | $jp_menu_order[] = $item; |
|
| 136 | ||
| 137 | if ( $index == 0 ) |
|
| 138 | $jp_menu_order[] = 'jetpack'; |
|
| 139 | } |
|
| 140 | ||
| 141 | return $jp_menu_order; |
|
| 142 | } |
|
| 143 | ||
| 144 | function js_templates() { |
|
| 145 | Jetpack::init()->load_view( 'admin/landing-page-templates.php' ); |
|
| @@ 42-54 (lines=13) @@ | ||
| 39 | // add_action( 'jetpack_notices_update_settings', array( $this, 'show_notices_update_settings' ), 10, 1 ); |
|
| 40 | } |
|
| 41 | ||
| 42 | function jetpack_menu_order( $menu_order ) { |
|
| 43 | $jp_menu_order = array(); |
|
| 44 | ||
| 45 | foreach ( $menu_order as $index => $item ) { |
|
| 46 | if ( $item != 'jetpack' ) |
|
| 47 | $jp_menu_order[] = $item; |
|
| 48 | ||
| 49 | if ( $index == 0 ) |
|
| 50 | $jp_menu_order[] = 'jetpack'; |
|
| 51 | } |
|
| 52 | ||
| 53 | return $jp_menu_order; |
|
| 54 | } |
|
| 55 | ||
| 56 | // Render the configuration page for the module if it exists and an error |
|
| 57 | // screen if the module is not configurable |
|
| @@ 3265-3279 (lines=15) @@ | ||
| 3262 | return true; |
|
| 3263 | } |
|
| 3264 | ||
| 3265 | function jetpack_menu_order( $menu_order ) { |
|
| 3266 | $jp_menu_order = array(); |
|
| 3267 | ||
| 3268 | foreach ( $menu_order as $index => $item ) { |
|
| 3269 | if ( $item != 'jetpack' ) { |
|
| 3270 | $jp_menu_order[] = $item; |
|
| 3271 | } |
|
| 3272 | ||
| 3273 | if ( $index == 0 ) { |
|
| 3274 | $jp_menu_order[] = 'jetpack'; |
|
| 3275 | } |
|
| 3276 | } |
|
| 3277 | ||
| 3278 | return $jp_menu_order; |
|
| 3279 | } |
|
| 3280 | ||
| 3281 | function admin_head() { |
|
| 3282 | if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) |
|