updated plugin Jetpack Protect
version 2.1.0
This commit is contained in:
@ -5,6 +5,36 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.17.3] - 2024-03-14
|
||||
### Changed
|
||||
- Internal updates.
|
||||
|
||||
## [0.17.2] - 2024-03-12
|
||||
### Changed
|
||||
- Updated package dependencies. [#36325]
|
||||
|
||||
## [0.17.1] - 2024-03-04
|
||||
### Changed
|
||||
- Updated package dependencies.
|
||||
|
||||
## [0.17.0] - 2024-02-13
|
||||
### Changed
|
||||
- Updated package dependencies. [#35608]
|
||||
|
||||
### Deprecated
|
||||
- Deprecating unused methods for IDC handling [#35444]
|
||||
|
||||
## [0.16.0] - 2024-02-07
|
||||
### Deprecated
|
||||
- Removing old and previously deprecated code. [#35048]
|
||||
|
||||
## [0.15.1] - 2024-02-05
|
||||
### Changed
|
||||
- Updated package dependencies. [#35384]
|
||||
|
||||
### Fixed
|
||||
- Minor change in method response [#35336]
|
||||
|
||||
## [0.15.0] - 2024-01-18
|
||||
### Added
|
||||
- Adding support for IDC when site URL is an IP address. [#34753]
|
||||
@ -473,6 +503,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Updated package dependencies.
|
||||
- Use Connection/Urls for home_url and site_url functions migrated from Sync.
|
||||
|
||||
[0.17.3]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.17.2...v0.17.3
|
||||
[0.17.2]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.17.1...v0.17.2
|
||||
[0.17.1]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.17.0...v0.17.1
|
||||
[0.17.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.16.0...v0.17.0
|
||||
[0.16.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.15.1...v0.16.0
|
||||
[0.15.1]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.15.0...v0.15.1
|
||||
[0.15.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.14.1...v0.15.0
|
||||
[0.14.1]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.14.0...v0.14.1
|
||||
[0.14.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.13.0...v0.14.0
|
||||
|
@ -1 +1 @@
|
||||
<?php return array('dependencies' => array('react', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-url'), 'version' => '2770a423a89e22f7aed3');
|
||||
<?php return array('dependencies' => array('react', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-url'), 'version' => '607b018606bd0a465d3b');
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -5,14 +5,14 @@
|
||||
"license": "GPL-2.0-or-later",
|
||||
"require": {
|
||||
"php": ">=7.0",
|
||||
"automattic/jetpack-connection": "^2.2.0",
|
||||
"automattic/jetpack-constants": "^2.0.0",
|
||||
"automattic/jetpack-status": "^2.0.2",
|
||||
"automattic/jetpack-logo": "^2.0.0",
|
||||
"automattic/jetpack-assets": "^2.0.4"
|
||||
"automattic/jetpack-connection": "^2.4.1",
|
||||
"automattic/jetpack-constants": "^2.0.1",
|
||||
"automattic/jetpack-status": "^2.1.2",
|
||||
"automattic/jetpack-logo": "^2.0.1",
|
||||
"automattic/jetpack-assets": "^2.1.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"automattic/jetpack-changelogger": "^4.0.5",
|
||||
"automattic/jetpack-changelogger": "^4.1.1",
|
||||
"yoast/phpunit-polyfills": "1.1.0",
|
||||
"automattic/wordbless": "@dev"
|
||||
},
|
||||
@ -57,7 +57,7 @@
|
||||
"link-template": "https://github.com/Automattic/jetpack-identity-crisis/compare/v${old}...v${new}"
|
||||
},
|
||||
"branch-alias": {
|
||||
"dev-trunk": "0.15.x-dev"
|
||||
"dev-trunk": "0.17.x-dev"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
|
@ -7,7 +7,6 @@
|
||||
|
||||
namespace Automattic\Jetpack;
|
||||
|
||||
use Automattic\Jetpack\Assets\Logo as Jetpack_Logo;
|
||||
use Automattic\Jetpack\Connection\Manager as Connection_Manager;
|
||||
use Automattic\Jetpack\Connection\Urls;
|
||||
use Automattic\Jetpack\IdentityCrisis\Exception;
|
||||
@ -27,7 +26,7 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Package Version
|
||||
*/
|
||||
const PACKAGE_VERSION = '0.15.0';
|
||||
const PACKAGE_VERSION = '0.17.3';
|
||||
|
||||
/**
|
||||
* Persistent WPCOM blog ID that stays in the options after disconnect.
|
||||
@ -142,9 +141,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Gets the link to the support document used to explain Safe Mode to users.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public static function get_safe_mod_doc_url() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
return Redirect::get_url( 'jetpack-support-safe-mode' );
|
||||
}
|
||||
|
||||
@ -239,25 +240,6 @@ class Identity_Crisis {
|
||||
return add_query_arg( $query_args, $url );
|
||||
}
|
||||
|
||||
/**
|
||||
* Non-admins current screen check.
|
||||
*
|
||||
* @param object $current_screen Current screen.
|
||||
*
|
||||
* @return null
|
||||
* @deprecated 0.5.0 Use `@automattic/jetpack-idc` instead.
|
||||
*/
|
||||
public function non_admins_current_screen_check( $current_screen ) {
|
||||
_deprecated_function( __METHOD__, '0.5.0' );
|
||||
|
||||
self::$current_screen = $current_screen;
|
||||
if ( isset( $current_screen->id ) && 'toplevel_page_jetpack' === $current_screen->id ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the admin bar button.
|
||||
*
|
||||
@ -375,11 +357,13 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Prepare URL for display.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @param string $url URL to display.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function prepare_url_for_display( $url ) {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
return untrailingslashit( self::normalize_url_protocol_agnostic( $url ) );
|
||||
}
|
||||
|
||||
@ -558,28 +542,12 @@ class Identity_Crisis {
|
||||
return $returned_values;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the value of the jetpack_sync_idc_optin filter, or constant.
|
||||
* If set to true, the site will be put into staging mode.
|
||||
*
|
||||
* @return bool
|
||||
* @since 0.2.0
|
||||
* @since-jetpack 4.3.2
|
||||
* @deprecated 0.2.6 Use should_handle_idc()
|
||||
* @see Automattic\Jetpack\Identity_Crisis::should_handle_idc
|
||||
*/
|
||||
public static function sync_idc_optin() {
|
||||
_deprecated_function( __METHOD__, '0.2.6', 'Automattic\\Jetpack\\Identity_Crisis::should_handle_idc' );
|
||||
return self::should_handle_idc();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the value of the jetpack_should_handle_idc filter or constant.
|
||||
* If set to true, the site will be put into staging mode.
|
||||
*
|
||||
* This method uses both the current jetpack_should_handle_idc filter and constant and the
|
||||
* legacy jetpack_sync_idc_optin filter and constant to determine whether an IDC should be
|
||||
* handled.
|
||||
* This method uses both the current jetpack_should_handle_idc filter
|
||||
* and constant to determine whether an IDC should be handled.
|
||||
*
|
||||
* @return bool
|
||||
* @since 0.2.6
|
||||
@ -587,16 +555,10 @@ class Identity_Crisis {
|
||||
public static function should_handle_idc() {
|
||||
if ( Constants::is_defined( 'JETPACK_SHOULD_HANDLE_IDC' ) ) {
|
||||
$default = Constants::get_constant( 'JETPACK_SHOULD_HANDLE_IDC' );
|
||||
} elseif ( Constants::is_defined( 'JETPACK_SYNC_IDC_OPTIN' ) ) {
|
||||
// Check the legacy constant. This constant should be considered deprecated as of version 0.2.6.
|
||||
$default = Constants::get_constant( 'JETPACK_SYNC_IDC_OPTIN' );
|
||||
} else {
|
||||
$default = ! Constants::is_defined( 'SUNRISE' ) && ! is_multisite();
|
||||
}
|
||||
|
||||
// Add a callback which uses the legacy filter 'jetpack_sync_idc_optin'.
|
||||
add_filter( 'jetpack_should_handle_idc', array( __CLASS__, 'legacy_jetpack_sync_idc_optin_filter' ) );
|
||||
|
||||
/**
|
||||
* Allows sites to opt in for IDC mitigation which blocks the site from syncing to WordPress.com when the home
|
||||
* URL or site URL do not match what WordPress.com expects. The default value is either true, or the value of
|
||||
@ -609,162 +571,15 @@ class Identity_Crisis {
|
||||
return (bool) apply_filters( 'jetpack_should_handle_idc', $default );
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the value for the deprecated filter, 'jetpack_sync_idc_optin'. That filter has been replaced with the
|
||||
* 'jetpack_should_handle_idc' filter.
|
||||
*
|
||||
* @since 0.2.6
|
||||
*
|
||||
* @param bool $default Whether the site is opted in to IDC mitigation.
|
||||
*/
|
||||
public static function legacy_jetpack_sync_idc_optin_filter( $default ) {
|
||||
/**
|
||||
* Allows sites to opt in for IDC mitigation which blocks the site from syncing to WordPress.com when the home
|
||||
* URL or site URL do not match what WordPress.com expects. The default value is either true, or the value of
|
||||
* JETPACK_SYNC_IDC_OPTIN constant if set.
|
||||
*
|
||||
* @param bool $default Whether the site is opted in to IDC mitigation.
|
||||
*
|
||||
* @since 0.2.0
|
||||
* @since-jetpack 4.3.2
|
||||
* @deprecated 0.2.6 Use jetpack_should_handle_idc
|
||||
*/
|
||||
return (bool) apply_filters_deprecated( 'jetpack_sync_idc_optin', array( $default ), '0.2.6', 'jetpack_should_handle_idc' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Does the current admin page have help tabs?
|
||||
*
|
||||
* @return bool
|
||||
* @deprecated 0.5.0 Use `@automattic/jetpack-idc` instead.
|
||||
*/
|
||||
public function admin_page_has_help_tabs() {
|
||||
_deprecated_function( __METHOD__, '0.5.0' );
|
||||
|
||||
if ( ! function_exists( 'get_current_screen' ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$current_screen = get_current_screen();
|
||||
$tabs = $current_screen->get_help_tabs();
|
||||
|
||||
return ! empty( $tabs );
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the non-admin IDC notice.
|
||||
*
|
||||
* @return void
|
||||
* @deprecated 0.5.0 Use `@automattic/jetpack-idc` instead.
|
||||
*/
|
||||
public function display_non_admin_idc_notice() {
|
||||
_deprecated_function( __METHOD__, '0.5.0' );
|
||||
|
||||
$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';
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="<?php echo esc_attr( $classes ); ?>">
|
||||
<?php $this->render_notice_header(); ?>
|
||||
<div class="jp-idc-notice__content-header">
|
||||
<h3 class="jp-idc-notice__content-header__lead">
|
||||
<?php echo $this->get_non_admin_notice_text(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
|
||||
</h3>
|
||||
|
||||
<p class="jp-idc-notice__content-header__explanation">
|
||||
<?php echo $this->get_non_admin_contact_admin_text(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
/**
|
||||
* First "step" of the IDC mitigation. Will provide some messaging and two options/buttons.
|
||||
* "Confirm Staging" - Dismiss the notice and continue on with our lives in staging mode.
|
||||
* "Fix Jetpack Connection" - Will disconnect the site and start the mitigation...
|
||||
*
|
||||
* @return void
|
||||
* @deprecated 0.5.0 Use `@automattic/jetpack-idc` instead.
|
||||
*/
|
||||
public function display_idc_notice() {
|
||||
_deprecated_function( __METHOD__, '0.5.0' );
|
||||
|
||||
$classes = 'jp-idc-notice inline notice notice-warning';
|
||||
if ( $this->admin_page_has_help_tabs() ) {
|
||||
$classes .= ' has-help-tabs';
|
||||
}
|
||||
?>
|
||||
<div class="<?php echo esc_attr( $classes ); ?>">
|
||||
<?php $this->render_notice_header(); ?>
|
||||
<?php $this->render_notice_first_step(); ?>
|
||||
<?php $this->render_notice_second_step(); ?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
/**
|
||||
* Enqueue CSS for the admin bar.
|
||||
*
|
||||
* @return void
|
||||
* @deprecated 0.5.0 Use `@automattic/jetpack-idc` instead.
|
||||
*/
|
||||
public function enqueue_admin_bar_css() {
|
||||
_deprecated_function( __METHOD__, '0.5.0' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Enqueue scripts for the notice.
|
||||
*
|
||||
* @return void
|
||||
* @deprecated 0.5.0 Use `@automattic/jetpack-idc` instead.
|
||||
*/
|
||||
public function enqueue_idc_notice_files() {
|
||||
_deprecated_function( __METHOD__, '0.5.0' );
|
||||
|
||||
// Register and Enqueue jp-tracks-functions.
|
||||
Tracking::register_tracks_functions_scripts( true );
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the notice header.
|
||||
*
|
||||
* @return void
|
||||
* @deprecated 0.5.0 Use `@automattic/jetpack-idc` instead.
|
||||
*/
|
||||
public function render_notice_header() {
|
||||
_deprecated_function( __METHOD__, '0.5.0' );
|
||||
|
||||
?>
|
||||
<div class="jp-idc-notice__header">
|
||||
<div class="jp-idc-notice__header__emblem">
|
||||
<?php
|
||||
$jetpack_logo = new Jetpack_Logo();
|
||||
echo $jetpack_logo->get_jp_emblem(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
||||
?>
|
||||
</div>
|
||||
<p class="jp-idc-notice__header__text">
|
||||
<?php esc_html_e( 'Jetpack Safe Mode', 'jetpack-idc' ); ?>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="jp-idc-notice__separator"></div>
|
||||
<?php
|
||||
}
|
||||
|
||||
/**
|
||||
* Is a container for the error notices.
|
||||
* Will be shown/controlled by jQuery in idc-notice.js.
|
||||
*
|
||||
* @deprecated 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return void
|
||||
*/
|
||||
public function render_error_notice() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
?>
|
||||
<div class="jp-idc-error__notice dops-notice is-error">
|
||||
<svg class="gridicon gridicons-notice dops-notice__icon" height="24" width="24" viewBox="0 0 24 24">
|
||||
@ -790,9 +605,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Renders the first step notice.
|
||||
*
|
||||
* @deprecated 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return void
|
||||
*/
|
||||
public function render_notice_first_step() {
|
||||
_deprecated_function( __METHOD__, ' 0.17.0' );
|
||||
?>
|
||||
<div class="jp-idc-notice__first-step">
|
||||
<div class="jp-idc-notice__content-header">
|
||||
@ -833,9 +650,12 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Renders the second step notice.
|
||||
*
|
||||
* @deprecated 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function render_notice_second_step() {
|
||||
_deprecated_function( __METHOD__, ' 0.17.0' );
|
||||
?>
|
||||
<div class="jp-idc-notice__second-step">
|
||||
<div class="jp-idc-notice__content-header">
|
||||
@ -877,9 +697,12 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the first step header lead.
|
||||
*
|
||||
* @deprecated 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function get_first_step_header_lead() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$html = wp_kses(
|
||||
sprintf(
|
||||
/* translators: %s: Safe mode docs URL and site URL. */
|
||||
@ -905,9 +728,12 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the first step header explanation.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function get_first_step_header_explanation() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$html = wp_kses(
|
||||
sprintf(
|
||||
/* translators: %s: Safe mode docs URL. */
|
||||
@ -931,9 +757,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the confirm safe mode explanation.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_confirm_safe_mode_action_explanation() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$html = wp_kses(
|
||||
sprintf(
|
||||
/* translators: %s: Site URL. */
|
||||
@ -958,9 +786,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the confirm safe mode button text.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_confirm_safe_mode_button_text() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$string = esc_html__( 'Confirm Safe Mode', 'jetpack-idc' );
|
||||
|
||||
/**
|
||||
@ -977,9 +807,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the first step fix connection action explanation.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_first_step_fix_connection_action_explanation() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$html = wp_kses(
|
||||
sprintf(
|
||||
/* translators: %s: Site URL. */
|
||||
@ -1004,9 +836,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the first step fix connection button text.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_first_step_fix_connection_button_text() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$string = esc_html__( "Fix Jetpack's Connection", 'jetpack-idc' );
|
||||
|
||||
/**
|
||||
@ -1023,9 +857,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the second step header lead.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_second_step_header_lead() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$string = sprintf(
|
||||
/* translators: %s: Site URL. */
|
||||
esc_html__( 'Is %1$s the new home of %2$s?', 'jetpack-idc' ),
|
||||
@ -1047,9 +883,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the site action explanation.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_migrate_site_action_explanation() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$html = wp_kses(
|
||||
sprintf(
|
||||
/* translators: %s: Site URL. */
|
||||
@ -1076,9 +914,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the migrate site button text.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_migrate_site_button_text() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$string = esc_html__( 'Migrate Stats & Subscribers', 'jetpack-idc' );
|
||||
|
||||
/**
|
||||
@ -1095,9 +935,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the start fresh explanation.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_start_fresh_action_explanation() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$html = wp_kses(
|
||||
sprintf(
|
||||
/* translators: %s: Site URL. */
|
||||
@ -1124,9 +966,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the start fresh button text.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_start_fresh_button_text() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$string = esc_html__( 'Start Fresh & Create New Connection', 'jetpack-idc' );
|
||||
|
||||
/**
|
||||
@ -1143,9 +987,11 @@ class Identity_Crisis {
|
||||
/**
|
||||
* Returns the unsure prompt text.
|
||||
*
|
||||
* @deprecated since 0.17.0 Use `@automattic/jetpack-idc` instead.
|
||||
* @return string
|
||||
*/
|
||||
public function get_unsure_prompt() {
|
||||
_deprecated_function( __METHOD__, 'package-0.17.0' );
|
||||
$html = wp_kses(
|
||||
sprintf(
|
||||
/* translators: %s: Safe mode docs URL. */
|
||||
@ -1166,57 +1012,6 @@ class Identity_Crisis {
|
||||
return apply_filters( 'jetpack_idc_unsure_prompt', $html );
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the non-admin notice text.
|
||||
*
|
||||
* @return string
|
||||
* @deprecated 0.5.0 Use `@automattic/jetpack-idc` instead.
|
||||
*/
|
||||
public function get_non_admin_notice_text() {
|
||||
_deprecated_function( __METHOD__, '0.5.0' );
|
||||
|
||||
$html = wp_kses(
|
||||
sprintf(
|
||||
/* translators: %s: Safe mode docs URL. */
|
||||
__( 'Jetpack has been placed into Safe Mode. Learn more about <a href="%1$s">Safe Mode</a>.', 'jetpack-idc' ),
|
||||
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.
|
||||
*
|
||||
* @param string $html The HTML to be displayed.
|
||||
*
|
||||
* @since 0.2.0
|
||||
* @since-jetpack 4.4.0
|
||||
*/
|
||||
return apply_filters( 'jetpack_idc_non_admin_notice_text', $html );
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the non-admin contact admin text.
|
||||
*
|
||||
* @return string
|
||||
* @deprecated 0.5.0 Use `@automattic/jetpack-idc` instead.
|
||||
*/
|
||||
public function get_non_admin_contact_admin_text() {
|
||||
_deprecated_function( __METHOD__, '0.5.0' );
|
||||
|
||||
$string = esc_html__( 'An administrator of this site can take Jetpack out of Safe Mode.', 'jetpack-idc' );
|
||||
|
||||
/**
|
||||
* Allows overriding of the default text that is displayed to non-admins prompting them to contact an admin.
|
||||
*
|
||||
* @param string $string The string to be displayed.
|
||||
*
|
||||
* @since 0.2.0
|
||||
* @since-jetpack 4.4.0
|
||||
*/
|
||||
return apply_filters( 'jetpack_idc_non_admin_contact_admin_text', $string );
|
||||
}
|
||||
|
||||
/**
|
||||
* Whether the site is undergoing identity crisis.
|
||||
*
|
||||
@ -1506,7 +1301,7 @@ class Identity_Crisis {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return $response;
|
||||
}
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user