mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 18:32:23 +01:00
Docs: Standardize filter docs in wp-includes/class-http.php to use third-person singular verbs per the inline documentation standards for PHP.
See #36913. Built from https://develop.svn.wordpress.org/trunk@37514 git-svn-id: http://core.svn.wordpress.org/trunk@37482 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
abbd18dbb7
commit
fe3129f470
@ -153,7 +153,7 @@ class WP_Http {
|
|||||||
$defaults = array(
|
$defaults = array(
|
||||||
'method' => 'GET',
|
'method' => 'GET',
|
||||||
/**
|
/**
|
||||||
* Filter the timeout value for an HTTP request.
|
* Filters the timeout value for an HTTP request.
|
||||||
*
|
*
|
||||||
* @since 2.7.0
|
* @since 2.7.0
|
||||||
*
|
*
|
||||||
@ -162,7 +162,7 @@ class WP_Http {
|
|||||||
*/
|
*/
|
||||||
'timeout' => apply_filters( 'http_request_timeout', 5 ),
|
'timeout' => apply_filters( 'http_request_timeout', 5 ),
|
||||||
/**
|
/**
|
||||||
* Filter the number of redirects allowed during an HTTP request.
|
* Filters the number of redirects allowed during an HTTP request.
|
||||||
*
|
*
|
||||||
* @since 2.7.0
|
* @since 2.7.0
|
||||||
*
|
*
|
||||||
@ -170,7 +170,7 @@ class WP_Http {
|
|||||||
*/
|
*/
|
||||||
'redirection' => apply_filters( 'http_request_redirection_count', 5 ),
|
'redirection' => apply_filters( 'http_request_redirection_count', 5 ),
|
||||||
/**
|
/**
|
||||||
* Filter the version of the HTTP protocol used in a request.
|
* Filters the version of the HTTP protocol used in a request.
|
||||||
*
|
*
|
||||||
* @since 2.7.0
|
* @since 2.7.0
|
||||||
*
|
*
|
||||||
@ -179,7 +179,7 @@ class WP_Http {
|
|||||||
*/
|
*/
|
||||||
'httpversion' => apply_filters( 'http_request_version', '1.0' ),
|
'httpversion' => apply_filters( 'http_request_version', '1.0' ),
|
||||||
/**
|
/**
|
||||||
* Filter the user agent value sent with an HTTP request.
|
* Filters the user agent value sent with an HTTP request.
|
||||||
*
|
*
|
||||||
* @since 2.7.0
|
* @since 2.7.0
|
||||||
*
|
*
|
||||||
@ -187,7 +187,7 @@ class WP_Http {
|
|||||||
*/
|
*/
|
||||||
'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) ),
|
'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) ),
|
||||||
/**
|
/**
|
||||||
* Filter whether to pass URLs through wp_http_validate_url() in an HTTP request.
|
* Filters whether to pass URLs through wp_http_validate_url() in an HTTP request.
|
||||||
*
|
*
|
||||||
* @since 3.6.0
|
* @since 3.6.0
|
||||||
*
|
*
|
||||||
@ -217,7 +217,7 @@ class WP_Http {
|
|||||||
|
|
||||||
$r = wp_parse_args( $args, $defaults );
|
$r = wp_parse_args( $args, $defaults );
|
||||||
/**
|
/**
|
||||||
* Filter the arguments used in an HTTP request.
|
* Filters the arguments used in an HTTP request.
|
||||||
*
|
*
|
||||||
* @since 2.7.0
|
* @since 2.7.0
|
||||||
*
|
*
|
||||||
@ -231,7 +231,7 @@ class WP_Http {
|
|||||||
$r['_redirection'] = $r['redirection'];
|
$r['_redirection'] = $r['redirection'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter whether to preempt an HTTP request's return value.
|
* Filters whether to preempt an HTTP request's return value.
|
||||||
*
|
*
|
||||||
* Returning a non-false value from the filter will short-circuit the HTTP request and return
|
* Returning a non-false value from the filter will short-circuit the HTTP request and return
|
||||||
* early with that value. A filter should return either:
|
* early with that value. A filter should return either:
|
||||||
@ -339,7 +339,7 @@ class WP_Http {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter whether SSL should be verified for non-local requests.
|
* Filters whether SSL should be verified for non-local requests.
|
||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
*
|
*
|
||||||
@ -386,7 +386,7 @@ class WP_Http {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter the HTTP API response immediately before the response is returned.
|
* Filters the HTTP API response immediately before the response is returned.
|
||||||
*
|
*
|
||||||
* @since 2.9.0
|
* @since 2.9.0
|
||||||
*
|
*
|
||||||
@ -431,7 +431,7 @@ class WP_Http {
|
|||||||
$transports = array( 'curl', 'streams' );
|
$transports = array( 'curl', 'streams' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter which HTTP transports are available and in what order.
|
* Filters which HTTP transports are available and in what order.
|
||||||
*
|
*
|
||||||
* @since 3.7.0
|
* @since 3.7.0
|
||||||
*
|
*
|
||||||
@ -506,7 +506,7 @@ class WP_Http {
|
|||||||
return $response;
|
return $response;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter the HTTP API response immediately before the response is returned.
|
* Filters the HTTP API response immediately before the response is returned.
|
||||||
*
|
*
|
||||||
* @since 2.9.0
|
* @since 2.9.0
|
||||||
*
|
*
|
||||||
@ -775,7 +775,7 @@ class WP_Http {
|
|||||||
// Don't block requests back to ourselves by default.
|
// Don't block requests back to ourselves by default.
|
||||||
if ( 'localhost' == $check['host'] || ( isset( $home['host'] ) && $home['host'] == $check['host'] ) ) {
|
if ( 'localhost' == $check['host'] || ( isset( $home['host'] ) && $home['host'] == $check['host'] ) ) {
|
||||||
/**
|
/**
|
||||||
* Filter whether to block local requests through the proxy.
|
* Filters whether to block local requests through the proxy.
|
||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
*
|
*
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.6-alpha-37513';
|
$wp_version = '4.6-alpha-37514';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user