Public Member Functions | Protected Member Functions | Protected Attributes

oxCurl Class Reference

List of all members.

Public Member Functions

 setUrl ($sUrl)
 getUrl ()
 setQuery ($sQuery=null)
 getQuery ()
 setParameters ($aParameters)
 getParameters ()
 setHost ($sHost)
 getHost ()
 setHeader ($aHeader=null)
 getHeader ()
 setMethod ($sMethod)
 getMethod ()
 getOptions ()
 setConnectionCharset ($sCharset)
 getConnectionCharset ()

Protected Member Functions

 _setResource ($rCurl)
 _getResource ()
 _setOptions ()
 _execute ()
 _close ()
 _setOpt ($sName, $sValue)
 _getErrorNumber ()
 _htmlDecode ($sString)

Protected Attributes

 $_rCurl = null
 $_sUrl = null
 $_sQuery = null
 $_sMethod = 'POST'
 $_aParameters = null
 $_sConnectionCharset = "UTF-8"
 $_aHeader = null
 $_sHost = null
 $_aOptions = array('CURLOPT_RETURNTRANSFER' => 1)

Detailed Description

CURL request handler. Handles CURL calls

Definition at line 9 of file oxcurl.php.


Member Function Documentation

oxCurl._close (  )  [protected]

Wrapper function to be mocked for testing.

Returns:
null

Definition at line 355 of file oxcurl.php.

oxCurl._execute (  )  [protected]

Wrapper function to be mocked for testing.

Returns:
string

Definition at line 345 of file oxcurl.php.

oxCurl._getErrorNumber (  )  [protected]

Check if curl has errors. Set error message if has.

Returns:
int

Definition at line 377 of file oxcurl.php.

oxCurl._getResource (  )  [protected]

Returns curl resource

Returns:
resource

Definition at line 86 of file oxcurl.php.

oxCurl._htmlDecode ( sString  )  [protected]

Decode (if needed) html entity

Parameters:
string $sString query
Returns:
string

Definition at line 389 of file oxcurl.php.

oxCurl._setOpt ( sName,
sValue 
) [protected]

Wrapper function to be mocked for testing.

Parameters:
string $sName curl option name to set value to.
string $sValue curl option value to set.

Definition at line 367 of file oxcurl.php.

oxCurl._setOptions (  )  [protected]

Set Curl Options

Definition at line 320 of file oxcurl.php.

oxCurl._setResource ( rCurl  )  [protected]

Sets resource

Parameters:
resource $rCurl curl.

Definition at line 76 of file oxcurl.php.

oxCurl.getConnectionCharset (  ) 

Return connection charset

Returns:
string

Definition at line 411 of file oxcurl.php.

oxCurl.getHeader (  ) 

Forms header from host.

Returns:
array

Definition at line 223 of file oxcurl.php.

oxCurl.getHost (  ) 

Returns host.

Returns:
string

Definition at line 190 of file oxcurl.php.

oxCurl.getMethod (  ) 

Return method to send

Returns:
string

Definition at line 248 of file oxcurl.php.

oxCurl.getOptions (  ) 

Gets all options for a cURL transfer

Returns:
array

Definition at line 283 of file oxcurl.php.

oxCurl.getParameters (  ) 

Return parameters to be added to call url.

return array

Definition at line 168 of file oxcurl.php.

oxCurl.getQuery (  ) 

Builds query like "param1=value1&param2=values2.."

Returns:
string

Definition at line 144 of file oxcurl.php.

oxCurl.getUrl (  ) 

Get url

Returns:
string

Definition at line 113 of file oxcurl.php.

oxCurl.setConnectionCharset ( sCharset  ) 

Set connection charset

Parameters:
string $sCharset charset

Definition at line 401 of file oxcurl.php.

oxCurl.setHeader ( aHeader = null  ) 

Set header.

Parameters:
array $aHeader
Returns:
null

Definition at line 202 of file oxcurl.php.

oxCurl.setHost ( sHost  ) 

Sets host.

Parameters:
string $sHost
Returns:
null

Definition at line 180 of file oxcurl.php.

oxCurl.setMethod ( sMethod  ) 

Set method to send (POST/GET)

Parameters:
string $sMethod method to send (POST/GET)
Returns:
null

Definition at line 238 of file oxcurl.php.

oxCurl.setParameters ( aParameters  ) 

Sets parameters to be added to call url.

Parameters:
array $aParameters parameters

Definition at line 158 of file oxcurl.php.

oxCurl.setQuery ( sQuery = null  ) 

Set query like "param1=value1&param2=values2.."

Definition at line 124 of file oxcurl.php.

oxCurl.setUrl ( sUrl  ) 

Sets url to call

Parameters:
string $sUrl URL to call.
Exceptions:
oxException if url is not valid
Returns:
null

Definition at line 103 of file oxcurl.php.


Member Data Documentation

oxCurl.$_aHeader = null [protected]

Definition at line 56 of file oxcurl.php.

oxCurl.$_aOptions = array('CURLOPT_RETURNTRANSFER' => 1) [protected]

Definition at line 69 of file oxcurl.php.

oxCurl.$_aParameters = null [protected]

Definition at line 44 of file oxcurl.php.

oxCurl.$_rCurl = null [protected]

Definition at line 16 of file oxcurl.php.

oxCurl.$_sConnectionCharset = "UTF-8" [protected]

Definition at line 50 of file oxcurl.php.

oxCurl.$_sHost = null [protected]

Definition at line 62 of file oxcurl.php.

oxCurl.$_sMethod = 'POST' [protected]

Set CURL method

Returns:
string

Definition at line 37 of file oxcurl.php.

oxCurl.$_sQuery = null [protected]

Query like "param1=value1&param2=values2.."

Returns:
string

Definition at line 30 of file oxcurl.php.

oxCurl.$_sUrl = null [protected]

Definition at line 23 of file oxcurl.php.


The documentation for this class was generated from the following file: