Jetpack_IDC::get_non_admin_notice_text PHP Метод

get_non_admin_notice_text() публичный Метод

    function get_non_admin_notice_text()
    {
        $html = wp_kses(sprintf(__('Jetpack has been placed into Safe Mode. Learn more about <a href="%1$s">Safe Mode</a>.', 'jetpack'), esc_url(self::SAFE_MODE_DOC_LINK)), 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);
    }