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 JTwitterHelp
+ Graphe d'héritage de JTwitterHelp:
+ Graphe de collaboration de JTwitterHelp:

Liste de tous les membres

Fonctions membres publiques

 getLanguages ()
 getConfiguration ()
- Fonctions membres publiques inherited from JTwitterObject
 __construct (JRegistry &$options=null, JHttp $client=null, JTwitterOAuth $oauth=null)
 checkRateLimit ($resource=null, $action=null)
 fetchUrl ($path, $parameters=null)
 getRateLimit ($resource)
 sendRequest ($path, $method= 'GET', $data=array(), $headers=array())
 getOption ($key)
 setOption ($key, $value)

Additional Inherited Members

- Attributs protégés inherited from JTwitterObject
 $options
 $client
 $oauth

Description détaillée

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


Documentation des fonctions membres

JTwitterHelp::getConfiguration ( )

Method to get the current configuration used by Twitter including twitter.com slugs which are not usernames, maximum photo resolutions, and t.co URL lengths.

Renvoie:
array The decoded JSON response
Depuis:
12.3

Définition à la ligne 48 du fichier help.php.

{
// Check the rate limit for remaining hits
$this->checkRateLimit('help', 'configuration');
// Set the API path
$path = '/help/configuration.json';
// Send the request.
return $this->sendRequest($path);
}
JTwitterHelp::getLanguages ( )

Method to get the supported languages from the API.

Renvoie:
array The decoded JSON response
Depuis:
12.3

Définition à la ligne 28 du fichier help.php.

{
// Check the rate limit for remaining hits
$this->checkRateLimit('help', 'languages');
// Set the API path
$path = '/help/languages.json';
// Send the request.
return $this->sendRequest($path);
}

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