_inc/lib/admin-pages/class.jetpack-landing-page.php 1 location
|
@@ 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' ); |
class.jetpack.php 1 location
|
@@ 3152-3166 (lines=15) @@
|
3149 |
|
return true; |
3150 |
|
} |
3151 |
|
|
3152 |
|
function jetpack_menu_order( $menu_order ) { |
3153 |
|
$jp_menu_order = array(); |
3154 |
|
|
3155 |
|
foreach ( $menu_order as $index => $item ) { |
3156 |
|
if ( $item != 'jetpack' ) { |
3157 |
|
$jp_menu_order[] = $item; |
3158 |
|
} |
3159 |
|
|
3160 |
|
if ( $index == 0 ) { |
3161 |
|
$jp_menu_order[] = 'jetpack'; |
3162 |
|
} |
3163 |
|
} |
3164 |
|
|
3165 |
|
return $jp_menu_order; |
3166 |
|
} |
3167 |
|
|
3168 |
|
function admin_head() { |
3169 |
|
if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) |