Jetpack_IDC::get_first_step_header_lead PHP Method

get_first_step_header_lead() public method

    function get_first_step_header_lead()
    {
        $html = wp_kses(sprintf(__('Jetpack has been placed into <a href="%1$s">Safe mode</a> because we noticed this is an exact copy of <a href="%2$s">%3$s</a>.', 'jetpack'), esc_url(self::SAFE_MODE_DOC_LINK), 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);
    }