id ) && 'toplevel_page_jetpack' == $current_screen->id ) {
return null;
}
// If the user has dismissed the notice, and we're not currently on a Jetpack page,
// then do not show the non-admin notice.
if ( isset( $_COOKIE, $_COOKIE['jetpack_idc_dismiss_notice'] ) ) {
remove_action( 'admin_notices', array( $this, 'display_non_admin_idc_notice' ) );
remove_action( 'admin_enqueue_scripts', array( $this, 'enqueue_idc_notice_files' ) );
}
}
function display_admin_bar_button() {
global $wp_admin_bar;
$href = is_admin()
? add_query_arg( 'jetpack_idc_clear_confirmation', '1' )
: add_query_arg( 'jetpack_idc_clear_confirmation', '1', admin_url() );
$href = wp_nonce_url( $href, 'jetpack_idc_clear_confirmation' );
$title = sprintf(
'%s %s',
'',
esc_html__( 'Jetpack Safe Mode', 'jetpack' )
);
$menu = array(
'id' => 'jetpack-idc',
'title' => $title,
'href' => esc_url( $href ),
'parent' => 'top-secondary',
);
if ( ! self::$is_safe_mode_confirmed ) {
$menu['meta'] = array(
'class' => 'hide',
);
}
$wp_admin_bar->add_node( $menu );
}
static function prepare_url_for_display( $url ) {
return untrailingslashit( Jetpack::normalize_url_protocol_agnostic( $url ) );
}
/**
* Clears all IDC specific options. This method is used on disconnect and reconnect.
*/
static function clear_all_idc_options() {
// If the site is currently in IDC, let's also clear the VaultPress connection options.
// We have to check if the site is in IDC, otherwise we'd be clearing the VaultPress
// connection any time the Jetpack connection is cycled.
if ( Jetpack::validate_sync_error_idc_option() ) {
delete_option( 'vaultpress' );
delete_option( 'vaultpress_auto_register' );
}
Jetpack_Options::delete_option(
array(
'sync_error_idc',
'safe_mode_confirmed',
'migrate_for_idc',
)
);
}
/**
* Does the current admin page have help tabs?
*
* @return bool
*/
function admin_page_has_help_tabs() {
if ( ! function_exists( 'get_current_screen' ) ) {
return false;
}
$current_screen = get_current_screen();
$tabs = $current_screen->get_help_tabs();
return ! empty( $tabs );
}
function display_non_admin_idc_notice() {
$classes = 'jp-idc-notice inline is-non-admin notice notice-warning';
if ( isset( self::$current_screen ) && 'toplevel_page_jetpack' != self::$current_screen->id ) {
$classes .= ' is-dismissible';
}
if ( $this->admin_page_has_help_tabs() ) {
$classes .= ' has-help-tabs';
}
?>
Safe mode because we noticed this is an exact copy of %3$s.',
'jetpack'
),
esc_url( self::get_safe_mod_doc_url() ),
esc_url( self::$wpcom_home_url ),
self::prepare_url_for_display( esc_url_raw( self::$wpcom_home_url ) )
),
array( 'a' => array( 'href' => array() ) )
);
/**
* Allows overriding of the default header text in the first step of the Safe Mode notice.
*
* @since 4.4.0
*
* @param string $html The HTML to be displayed
*/
return apply_filters( 'jetpack_idc_first_step_header_lead', $html );
}
function get_first_step_header_explanation() {
$html = wp_kses(
sprintf(
__(
'Please confirm Safe Mode or fix the Jetpack connection. Select one of the options below or learn
more about Safe Mode.',
'jetpack'
),
esc_url( self::get_safe_mod_doc_url() )
),
array( 'a' => array( 'href' => array() ) )
);
/**
* Allows overriding of the default header explanation text in the first step of the Safe Mode notice.
*
* @since 4.4.0
*
* @param string $html The HTML to be displayed
*/
return apply_filters( 'jetpack_idc_first_step_header_explanation', $html );
}
function get_confirm_safe_mode_action_explanation() {
$html = wp_kses(
sprintf(
__(
'Is this website a temporary duplicate of %2$s for the purposes
of testing, staging or development? If so, we recommend keeping it in Safe Mode.',
'jetpack'
),
esc_url( untrailingslashit( self::$wpcom_home_url ) ),
self::prepare_url_for_display( esc_url( self::$wpcom_home_url ) )
),
array( 'a' => array( 'href' => array() ) )
);
/**
* Allows overriding of the default text used to explain the confirm safe mode action.
*
* @since 4.4.0
*
* @param string $html The HTML to be displayed
*/
return apply_filters( 'jetpack_idc_confirm_safe_mode_explanation', $html );
}
function get_confirm_safe_mode_button_text() {
$string = esc_html__( 'Confirm Safe Mode', 'jetpack' );
/**
* Allows overriding of the default text used for the confirm safe mode action button.
*
* @since 4.4.0
*
* @param string $string The string to be displayed
*/
return apply_filters( 'jetpack_idc_confirm_safe_mode_button_text', $string );
}
function get_first_step_fix_connection_action_explanation() {
$html = wp_kses(
sprintf(
__(
'If this is a separate and new website, or the new home of %2$s,
we recommend turning Safe Mode off, and re-establishing your connection to WordPress.com.',
'jetpack'
),
esc_url( untrailingslashit( self::$wpcom_home_url ) ),
self::prepare_url_for_display( esc_url( self::$wpcom_home_url ) )
),
array( 'a' => array( 'href' => array() ) )
);
/**
* Allows overriding of the default text used to explain the fix Jetpack connection action.
*
* @since 4.4.0
*
* @param string $html The HTML to be displayed
*/
return apply_filters( 'jetpack_idc_first_fix_connection_explanation', $html );
}
function get_first_step_fix_connection_button_text() {
$string = esc_html__( "Fix Jetpack's Connection", 'jetpack' );
/**
* Allows overriding of the default text used for the fix Jetpack connection action button.
*
* @since 4.4.0
*
* @param string $string The string to be displayed
*/
return apply_filters( 'jetpack_idc_first_step_fix_connection_button_text', $string );
}
function get_second_step_header_lead() {
$string = sprintf(
esc_html__(
'Is %1$s the new home of %2$s?',
'jetpack'
),
untrailingslashit( Jetpack::normalize_url_protocol_agnostic( get_home_url() ) ),
untrailingslashit( Jetpack::normalize_url_protocol_agnostic( esc_url_raw( self::$wpcom_home_url ) ) )
);
/**
* Allows overriding of the default header text in the second step of the Safe Mode notice.
*
* @since 4.4.0
*
* @param string $html The HTML to be displayed
*/
return apply_filters( 'jetpack_idc_second_step_header_lead', $string );
}
function get_migrate_site_action_explanation() {
$html = wp_kses(
sprintf(
__(
'Yes. %2$s is replacing %4$s. I would like to
migrate my stats and subscribers from %4$s to %2$s.',
'jetpack'
),
esc_url( get_home_url() ),
self::prepare_url_for_display( get_home_url() ),
esc_url( self::$wpcom_home_url ),
untrailingslashit( Jetpack::normalize_url_protocol_agnostic( esc_url_raw( self::$wpcom_home_url ) ) )
),
array( 'a' => array( 'href' => array() ) )
);
/**
* Allows overriding of the default text for explaining the migrate site action.
*
* @since 4.4.0
*
* @param string $html The HTML to be displayed
*/
return apply_filters( 'jetpack_idc_migrate_site_explanation', $html );
}
function get_migrate_site_button_text() {
$string = esc_html__( 'Migrate Stats & Subscribers', 'jetpack' );
/**
* Allows overriding of the default text used for the migrate site action button.
*
* @since 4.4.0
*
* @param string $string The string to be displayed
*/
return apply_filters( 'jetpack_idc_migrate_site_button_text', $string );
}
function get_start_fresh_action_explanation() {
$html = wp_kses(
sprintf(
__(
'No. %2$s is a new and different website that\'s separate from
%4$s. It requires a new connection to WordPress.com for new stats and subscribers.',
'jetpack'
),
esc_url( get_home_url() ),
self::prepare_url_for_display( get_home_url() ),
esc_url( self::$wpcom_home_url ),
untrailingslashit( Jetpack::normalize_url_protocol_agnostic( esc_url_raw( self::$wpcom_home_url ) ) )
),
array( 'a' => array( 'href' => array() ) )
);
/**
* Allows overriding of the default text for explaining the start fresh action.
*
* @since 4.4.0
*
* @param string $html The HTML to be displayed
*/
return apply_filters( 'jetpack_idc_start_fresh_explanation', $html );
}
function get_start_fresh_button_text() {
$string = esc_html__( 'Start Fresh & Create New Connection', 'jetpack' );
/**
* Allows overriding of the default text used for the start fresh action button.
*
* @since 4.4.0
*
* @param string $string The string to be displayed
*/
return apply_filters( 'jetpack_idc_start_fresh_button_text', $string );
}
function get_unsure_prompt() {
$html = wp_kses(
sprintf(
__(
'Unsure what to do? Read more about Jetpack Safe Mode',
'jetpack'
),
esc_url( self::get_safe_mod_doc_url() )
),
array( 'a' => array( 'href' => array() ) )
);
/**
* Allows overriding of the default text using in the "Unsure what to do?" prompt.
*
* @since 4.4.0
*
* @param string $html The HTML to be displayed
*/
return apply_filters( 'jetpack_idc_unsure_prompt', $html );
}
function get_non_admin_notice_text() {
$html = wp_kses(
sprintf(
__(
'Jetpack has been placed into Safe Mode. Learn more about Safe Mode.',
'jetpack'
),
esc_url( self::get_safe_mod_doc_url() )
),
array( 'a' => array( 'href' => array() ) )
);
/**
* Allows overriding of the default text that is displayed to non-admin on the Jetpack admin page.
*
* @since 4.4.0
*
* @param string $html The HTML to be displayed
*/
return apply_filters( 'jetpack_idc_non_admin_notice_text', $html );
}
function get_non_admin_contact_admin_text() {
$string = esc_html__( 'An administrator of this site can take Jetpack out of Safe Mode.', 'jetpack' );
/**
* Allows overriding of the default text that is displayed to non-admins prompting them to contact an admin.
*
* @since 4.4.0
*
* @param string $string The string to be displayed
*/
return apply_filters( 'jetpack_idc_non_admin_contact_admin_text', $string );
}
}
add_action( 'plugins_loaded', array( 'Jetpack_IDC', 'init' ) );