Liste de tous les membres
Description détaillée
Définition à la ligne 19 du fichier twitter.php.
Documentation des constructeurs et destructeur
Constructor.
- Paramètres:
-
JTwitterOauth | $oauth | The oauth client. |
JRegistry | $options | Twitter options object. |
JHttp | $client | The HTTP client object. |
- Depuis:
- 12.3
Définition à la ligne 120 du fichier twitter.php.
{
$this->options = isset($options) ? $options :
new JRegistry;
$this->client = isset($client) ? $client :
new JHttp($this->options);
$this->options->def('api.url', 'https://api.twitter.com/1.1');
}
Documentation des fonctions membres
Magic method to lazily create API objects
- Paramètres:
-
string | $name | Name of property to retrieve |
- Renvoie:
- JTwitterObject Twitter API object (statuses, users, favorites, etc.).
- Depuis:
- 12.3
- Exceptions:
-
Définition à la ligne 140 du fichier twitter.php.
{
$class = 'JTwitter' . ucfirst($name);
if (class_exists($class))
{
if (false == isset($this->$name))
{
$this->$name = new $class($this->options, $this->client, $this->oauth);
}
return $this->$name;
}
throw new InvalidArgumentException(sprintf('Argument %s produced an invalid class name: %s', $name, $class));
}
JTwitter::getOption |
( |
|
$key | ) |
|
Get an option from the JTwitter instance.
- Paramètres:
-
string | $key | The name of the option to get. |
- Renvoie:
- mixed The option value.
- Depuis:
- 12.3
Définition à la ligne 166 du fichier twitter.php.
{
return $this->options->get($key);
}
JTwitter::setOption |
( |
|
$key, |
|
|
|
$value |
|
) |
| |
Set an option for the JTwitter instance.
- Paramètres:
-
string | $key | The name of the option to set. |
mixed | $value | The option value to set. |
- Renvoie:
- JTwitter This object for method chaining.
- Depuis:
- 12.3
Définition à la ligne 181 du fichier twitter.php.
{
$this->options->set($key, $value);
return $this;
}
Documentation des données membres
JTwitter::$directMessages |
|
protected |
La documentation de cette classe a été générée à partir du fichier suivant :