Tribe__Admin__Activation_Page::maybe_redirect()
Maybe redirect to the welcome page (or to the update page – though this is currently disabled).
Source
File: src/Tribe/Admin/Activation_Page.php
public function maybe_redirect() {
if ( ! empty( $_POST ) ) {
return; // don't interrupt anything the user's trying to do
}
if ( ! is_admin() || defined( 'DOING_AJAX' ) ) {
return;
}
if ( defined( 'IFRAME_REQUEST' ) && IFRAME_REQUEST ) {
return; // probably the plugin update/install iframe
}
if ( isset( $_GET[ $this->welcome_slug ] ) || isset( $_GET[ $this->update_slug ] ) ) {
return; // no infinite redirects
}
if ( isset( $_GET['tribe-skip-welcome'] ) ) {
return; // a way to skip these checks and
}
// bail if we aren't activating a plugin
if ( ! get_transient( $this->args['activation_transient'] ) ) {
return;
}
delete_transient( $this->args['activation_transient'] );
if ( ! current_user_can( Tribe__Settings::instance()->requiredCap ) ) {
return;
}
if ( $this->showed_update_message_for_current_version() ) {
return;
}
// the redirect might be intercepted by another plugin, but
// we'll go ahead and mark it as viewed right now, just in case
// we end up in a redirect loop
// see #31088
$this->log_display_of_message_page();
if ( $this->is_new_install() ) {
$this->redirect_to_welcome_page();
}
}