Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JGithubHttp
+ Graphe d'héritage de JGithubHttp:
+ Graphe de collaboration de JGithubHttp:

Liste de tous les membres

Fonctions membres publiques

 __construct (JRegistry $options=null, JHttpTransport $transport=null)
- Fonctions membres publiques inherited from JHttp
 getOption ($key)
 setOption ($key, $value)
 options ($url, array $headers=null, $timeout=null)
 head ($url, array $headers=null, $timeout=null)
 get ($url, array $headers=null, $timeout=null)
 post ($url, $data, array $headers=null, $timeout=null)
 put ($url, $data, array $headers=null, $timeout=null)
 delete ($url, array $headers=null, $timeout=null)
 trace ($url, array $headers=null, $timeout=null)
 patch ($url, $data, array $headers=null, $timeout=null)

Attributs publics

const AUTHENTICATION_NONE = 0
const AUTHENTICATION_BASIC = 1
const AUTHENTICATION_OAUTH = 2

Additional Inherited Members

- Attributs protégés inherited from JHttp
 $options
 $transport

Description détaillée

Définition à la ligne 19 du fichier http.php.


Documentation des constructeurs et destructeur

JGithubHttp::__construct ( JRegistry  $options = null,
JHttpTransport  $transport = null 
)

Constructor.

Paramètres:
JRegistry$optionsClient options object.
JHttpTransport$transportThe HTTP transport object.
Depuis:
11.3

Réimplémentée à partir de JHttp.

Définition à la ligne 47 du fichier http.php.

{
// Call the JHttp constructor to setup the object.
parent::__construct($options, $transport);
// Make sure the user agent string is defined.
$this->options->def('userAgent', 'JGitHub/2.0');
// Set the default timeout to 120 seconds.
$this->options->def('timeout', 120);
}

Documentation des données membres

const JGithubHttp::AUTHENTICATION_BASIC = 1

integer Use basic authentication for HTTP connections.

Depuis:
11.3

Définition à la ligne 31 du fichier http.php.

const JGithubHttp::AUTHENTICATION_NONE = 0

integer Use no authentication for HTTP connections.

Depuis:
11.3

Définition à la ligne 25 du fichier http.php.

const JGithubHttp::AUTHENTICATION_OAUTH = 2

integer Use OAuth authentication for HTTP connections.

Depuis:
11.3

Définition à la ligne 37 du fichier http.php.


La documentation de cette classe a été générée à partir du fichier suivant :