@@ 4234-4248 (lines=15) @@ | ||
4231 | wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' ); |
|
4232 | } |
|
4233 | break; |
|
4234 | case 'jetpack-manage-opt-out': |
|
4235 | ||
4236 | if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) { |
|
4237 | // Don't show the banner again |
|
4238 | ||
4239 | Jetpack_Options::update_option( 'dismissed_manage_banner', true ); |
|
4240 | // redirect back to the page that had the notice |
|
4241 | if ( wp_get_referer() ) { |
|
4242 | wp_safe_redirect( wp_get_referer() ); |
|
4243 | } else { |
|
4244 | // Take me to Jetpack |
|
4245 | wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) ); |
|
4246 | } |
|
4247 | } |
|
4248 | break; |
|
4249 | case 'jetpack-protect-multisite-opt-out': |
|
4250 | ||
4251 | if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) { |
|
@@ 4249-4263 (lines=15) @@ | ||
4246 | } |
|
4247 | } |
|
4248 | break; |
|
4249 | case 'jetpack-protect-multisite-opt-out': |
|
4250 | ||
4251 | if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) { |
|
4252 | // Don't show the banner again |
|
4253 | ||
4254 | update_site_option( 'jetpack_dismissed_protect_multisite_banner', true ); |
|
4255 | // redirect back to the page that had the notice |
|
4256 | if ( wp_get_referer() ) { |
|
4257 | wp_safe_redirect( wp_get_referer() ); |
|
4258 | } else { |
|
4259 | // Take me to Jetpack |
|
4260 | wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) ); |
|
4261 | } |
|
4262 | } |
|
4263 | break; |
|
4264 | case 'jetpack-manage-opt-in': |
|
4265 | if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) { |
|
4266 | // This makes sure that we are redirect to jetpack home so that we can see the Success Message. |