Requests_Proxy_HTTP::register( Requests_Hooks $hooks )

Register the necessary callbacks


Description Description

See also See also


Top ↑

Parameters Parameters

$hooks

(Requests_Hooks) (Required) Hook system


Top ↑

Source Source

File: wp-includes/Requests/Proxy/HTTP.php

	public function register(Requests_Hooks &$hooks) {
		$hooks->register('curl.before_send', array(&$this, 'curl_before_send'));

		$hooks->register('fsockopen.remote_socket', array(&$this, 'fsockopen_remote_socket'));
		$hooks->register('fsockopen.remote_host_path', array(&$this, 'fsockopen_remote_host_path'));
		if ($this->use_authentication) {
			$hooks->register('fsockopen.after_headers', array(&$this, 'fsockopen_header'));
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.6 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.