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

Liste de tous les membres

Fonctions membres publiques

 __construct (JRegistry $options=null, JHttp $client=null, JLinkedinOAuth $oauth=null)
 booleanToString ($bool)
 getOption ($key)
 setOption ($key, $value)

Attributs protégés

 $options
 $client
 $oauth

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$optionsLinkedin options object.
JHttp$clientThe HTTP client object.
JLinkedinOAuth$oauthThe 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);
$this->oauth = $oauth;
}

Documentation des fonctions membres

JLinkedinObject::booleanToString (   $bool)

Method to convert boolean to string.

Paramètres:
boolean$boolThe 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$keyThe 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$keyThe name of the option to set.
mixed$valueThe 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::$client
protected

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

JLinkedinObject::$oauth
protected

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

JLinkedinObject::$options
protected

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


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