PV%V V%V @ 4 V +~ CURLE_FTP_WEIRD_PASS_REPLY V%V ! V%V V%V @ M4 V e CURLE_FTP_WEIRD_PASV_REPLY V%V ! V%V PV%V @ -4 V ۯC_ CURLE_FTP_WEIRD_SERVER_REPLY V ! pV%V V%V @ 4 V l$ CURLE_FTP_WEIRD_USER_REPLY V%V ! V%V V%V @ m4 V ) CURLE_FTP_WRITE_ERROR @uV%V ! 0V%V pV%V @ ͼ4 V ~ CURLE_FUNCTION_NOT_FOUND vV%V ! V%V V%V @ 4 V Ze CURLE_GOT_NOTHING V%V wV%V ! V%V 0V%V @ 4 V < CURLE_HTTP_NOT_FOUND V xV%V ! PV%V V%V @ 4 V G̾1q CURLE_HTTP_PORT_FAILED yV%V ! V%V V%V @ M4 V - }y CURLE_HTTP_POST_ERROR zV%V ! V%V PV%V @ -4 V ΛT CURLE_HTTP_RANGE_ERROR zV%V ! pV%V V%V @ 4 V $@* CURLE_HTTP_RETURNED_ERROR V%V ! V%V V%V @ m4 V ı CURLE_LDAP_CANNOT_BIND |V%V ! 0V%V pV%V @ 4 V y@y2 CURLE_LDAP_SEARCH_FAILED }V%V ! V%V V%V @ 4 V ˋ6 CURLE_LIBRARY_NOT_FOUND ~V%V ! V%V 0V%V @ 4 V rxzv+ CURLE_MALFORMAT_USER V V%V ! @V%V V%V 0 4 V t3xş CURLE_OBSOLETE ! V%V V%V 0 M4 V Ѥ CURLE_OK V%V ! V%V @V%V @ 4 V t=y CURLE_OPERATION_TIMEDOUT V%V ! PV%V V%V @ 4 V fK CURLE_OPERATION_TIMEOUTED V%V ! V%V V%V @ M4 V #! T CURLE_OUT_OF_MEMORY %V V%V ! V%V PV%V @ -4 V ݎ CURLE_PARTIAL_FILE V%V 0V%V ! pV%V V%V @ 4 V Db CURLE_READ_ERROR V%V @V%V ! V%V V%V @ m4 V CURLE_RECV_ERROR V%V 0V%V ! 0V%V pV%V @ ͵4 V \f CURLE_SEND_ERROR V%V @V%V ! V%V V%V @ 4 V TRH CURLE_SHARE_IN_USE V%V 0V%V ! V%V 0V%V @ 4 V Bih CURLE_SSL_CACERT V%V 0V%V ! PV%V V%V @ 4 V 'W CURLE_SSL_CERTPROBLEM PV%V ! V%V V%V @ M4 V Kh CURLE_SSL_CIPHER V%V `V%V ! V%V PV%V @ -4 V Og&E CURLE_SSL_CONNECT_ERROR V%V ! pV%V V%V @ 4 V 24t!lQ CURLE_SSL_ENGINE_NOTFOUND V%V ! V%V V%V @ m4 V ПR~ CURLE_SSL_ENGINE_SETFAILED V%V ! 0V%V pV%V @ Ͷ4 V ~<tp CURLE_SSL_PEER_CERTIFICATE V%V ! V%V V%V @ 4 V bb7 CURLE_SSL_PINNEDPUBKEYNOTMATCH ! V%V 0V%V @ 4 V g` CURLE_TELNET_OPTION_SYNTAX V%V ! PV%V V%V @ 4 V L2 CURLE_TOO_MANY_REDIRECTS V%V ! V%V V%V @ M4 V 6R CURLE_UNKNOWN_TELNET_OPTION %V ! V%V PV%V @ -4 V &2R< CURLE_UNSUPPORTED_PROTOCOL V%V ! pV%V V%V @ 4 V R+: CURLE_URL_MALFORMAT %V V%V ! V%V V%V @ m4 V ܜq[ CURLE_URL_MALFORMAT_USER V%V ! 0V%V pV%V @ ͳ4 V )c㑼 CURLE_WRITE_ERROR V%V V%V ! V%V V%V @ 4 V CURLINFO_CONNECT_TIME V%V ! V%V 0V%V P 4 V s2Ъ CURLINFO_CONTENT_LENGTH_DOWNLOAD f each link being put out by the Yoast SEO breadcrumbs class. * * @param array $link The link array. * * @api string $link_output The output string. */ return \apply_filters( 'wpseo_breadcrumb_single_link', $link, $breadcrumb ); } /** * Retrieves HTML ID attribute. * * @return string The id attribute. */ protected function get_id() { if ( ! $this->id ) { /** * Filter: 'wpseo_breadcrumb_output_id' - Allow changing the HTML ID on the Yoast SEO breadcrumbs wrapper element. * * @api string $unsigned ID to add to the wrapper element. */ $this->id = \apply_filters( 'wpseo_breadcrumb_output_id', '' ); if ( ! \is_string( $this->id ) ) { return ''; } if ( $this->id !== '' ) { $this->id = ' id="' . \esc_attr( $this->id ) . '"'; } } return $this->id; } /** * Retrieves HTML Class attribute. * * @return string The class attribute. */ protected function get_class() { if ( ! $this->class ) { /** * Filter: 'wpseo_breadcrumb_output_class' - Allow changing the HTML class on the Yoast SEO breadcrumbs wrapper element. * * @api string $unsigned Class to add to the wrapper element. */ $this->class = \apply_filters( 'wpseo_breadcrumb_output_class', '' ); if ( ! \is_string( $this->class ) ) { return ''; } if ( $this->class !== '' ) { $this->class = ' class="' . \esc_attr( $this->class ) . '"'; } } return $this->class; } /** * Retrieves the wrapper element name. * * @return string The wrapper element name. */ protected function get_wrapper() { if ( ! $this->wrapper ) { $this->wrapper = \apply_filters( 'wpseo_breadcrumb_output_wrapper', 'span' ); $this->wrapper = \tag_escape( $this->wrapper ); if ( ! \is_string( $this->wrapper ) || $this->wrapper === '' ) { $this->wrapper = 'span'; } } return $this->wrapper; } /** * Retrieves the separator. * * @return string The separator. */ protected function get_separator() { if ( ! $this->separator ) { $this->separator = \apply_filters( 'wpseo_breadcrumb_separator', $this->helpers->options->get( 'breadcrumbs-sep' ) ); $this->separator = ' ' . $this->separator . ' '; } return $this->separator; } /** * Retrieves the crumb element name. * * @return string The element to use. */ protected function get_element() { if ( ! $this->element ) { $this->element = \esc_attr( \apply_filters( 'wpseo_breadcrumb_single_link_wrapper', 'span' ) ); } return $this->element; } }