Liste de tous les membres
Description détaillée
Définition à la ligne 22 du fichier google.php.
Documentation des constructeurs et destructeur
Constructor.
- Paramètres:
-
JRegistry | $options | Google options object. |
JAuth | $auth | The authentication client object. |
- Depuis:
- 12.3
Définition à la ligne 56 du fichier google.php.
{
$this->options = isset($options) ? $options :
new JRegistry;
}
Documentation des fonctions membres
JGoogle::data |
( |
|
$name, |
|
|
|
$options = null , |
|
|
|
$auth = null |
|
) |
| |
Method to create JGoogleData objects
- Paramètres:
-
string | $name | Name of property to retrieve |
JRegistry | $options | Google options object. |
JAuth | $auth | The authentication client object. |
- Renvoie:
- JGoogleData Google data API object.
- Depuis:
- 12.3
Définition à la ligne 73 du fichier google.php.
{
{
}
if ($this->auth && !
$auth)
{
}
switch ($name)
{
case 'plus':
case 'Plus':
case 'picasa':
case 'Picasa':
case 'adsense':
case 'Adsense':
case 'calendar':
case 'Calendar':
default:
return null;
}
}
JGoogle::embed |
( |
|
$name, |
|
|
|
$options = null |
|
) |
| |
Method to create JGoogleEmbed objects
- Paramètres:
-
string | $name | Name of property to retrieve |
JRegistry | $options | Google options object. |
- Renvoie:
- JGoogleEmbed Google embed API object.
- Depuis:
- 12.3
Définition à la ligne 112 du fichier google.php.
{
{
}
switch ($name)
{
case 'maps':
case 'Maps':
case 'analytics':
case 'Analytics':
default:
return null;
}
}
JGoogle::getOption |
( |
|
$key | ) |
|
Get an option from the JGoogle instance.
- Paramètres:
-
string | $key | The name of the option to get. |
- Renvoie:
- mixed The option value.
- Depuis:
- 12.3
Définition à la ligne 140 du fichier google.php.
{
return $this->options->get($key);
}
JGoogle::setOption |
( |
|
$key, |
|
|
|
$value |
|
) |
| |
Set an option for the JGoogle instance.
- Paramètres:
-
string | $key | The name of the option to set. |
mixed | $value | The option value to set. |
- Renvoie:
- JGoogle This object for method chaining.
- Depuis:
- 12.3
Définition à la ligne 155 du fichier google.php.
{
$this->options->set($key, $value);
return $this;
}
Documentation des données membres
La documentation de cette classe a été générée à partir du fichier suivant :