Liste de tous les membres
Description détaillée
Définition à la ligne 19 du fichier object.php.
Documentation des constructeurs et destructeur
JLinkedinObject::__construct |
( |
JRegistry |
$options = null , |
|
|
JHttp |
$client = null , |
|
|
JLinkedinOAuth |
$oauth = null |
|
) |
| |
Constructor.
- Paramètres:
-
JRegistry | $options | Linkedin options object. |
JHttp | $client | The HTTP client object. |
JLinkedinOAuth | $oauth | The OAuth client. |
- Depuis:
- 13.1
Définition à la ligne 48 du fichier object.php.
{
$this->options = isset($options) ? $options :
new JRegistry;
$this->client = isset($client) ? $client :
new JHttp($this->options);
}
Documentation des fonctions membres
JLinkedinObject::booleanToString |
( |
|
$bool | ) |
|
Method to convert boolean to string.
- Paramètres:
-
boolean | $bool | The boolean value to convert. |
- Renvoie:
- string String with the converted boolean.
- Depuis:
- 13.1
Définition à la ligne 64 du fichier object.php.
{
if ($bool)
{
return 'true';
}
else
{
return 'false';
}
}
JLinkedinObject::getOption |
( |
|
$key | ) |
|
Get an option from the JLinkedinObject instance.
- Paramètres:
-
string | $key | The name of the option to get. |
- Renvoie:
- mixed The option value.
- Depuis:
- 13.1
Définition à la ligne 85 du fichier object.php.
{
return $this->options->get($key);
}
JLinkedinObject::setOption |
( |
|
$key, |
|
|
|
$value |
|
) |
| |
Set an option for the JLinkedinObject instance.
- Paramètres:
-
string | $key | The name of the option to set. |
mixed | $value | The option value to set. |
- Renvoie:
- JLinkedinObject This object for method chaining.
- Depuis:
- 13.1
Définition à la ligne 100 du fichier object.php.
{
$this->options->set($key, $value);
return $this;
}
Documentation des données membres
JLinkedinObject::$options |
|
protected |
La documentation de cette classe a été générée à partir du fichier suivant :