@@ 4576-4590 (lines=15) @@ | ||
4573 | wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' ); |
|
4574 | } |
|
4575 | break; |
|
4576 | case 'jetpack-manage-opt-out': |
|
4577 | ||
4578 | if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) { |
|
4579 | // Don't show the banner again |
|
4580 | ||
4581 | Jetpack_Options::update_option( 'dismissed_manage_banner', true ); |
|
4582 | // redirect back to the page that had the notice |
|
4583 | if ( wp_get_referer() ) { |
|
4584 | wp_safe_redirect( wp_get_referer() ); |
|
4585 | } else { |
|
4586 | // Take me to Jetpack |
|
4587 | wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) ); |
|
4588 | } |
|
4589 | } |
|
4590 | break; |
|
4591 | case 'jetpack-protect-multisite-opt-out': |
|
4592 | ||
4593 | if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) { |
|
@@ 4591-4605 (lines=15) @@ | ||
4588 | } |
|
4589 | } |
|
4590 | break; |
|
4591 | case 'jetpack-protect-multisite-opt-out': |
|
4592 | ||
4593 | if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) { |
|
4594 | // Don't show the banner again |
|
4595 | ||
4596 | update_site_option( 'jetpack_dismissed_protect_multisite_banner', true ); |
|
4597 | // redirect back to the page that had the notice |
|
4598 | if ( wp_get_referer() ) { |
|
4599 | wp_safe_redirect( wp_get_referer() ); |
|
4600 | } else { |
|
4601 | // Take me to Jetpack |
|
4602 | wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) ); |
|
4603 | } |
|
4604 | } |
|
4605 | break; |
|
4606 | case 'jetpack-manage-opt-in': |
|
4607 | if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) { |
|
4608 | // This makes sure that we are redirect to jetpack home so that we can see the Success Message. |