Jetpack_IDC::get_confirm_safe_mode_action_explanation PHP Method

get_confirm_safe_mode_action_explanation() public method

    function get_confirm_safe_mode_action_explanation()
    {
        $html = wp_kses(sprintf(__('Is this website a temporary duplicate of <a href="%1$s">%2$s</a> 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);
    }