Liste de tous les membres
Description détaillée
Définition à la ligne 20 du fichier embed.php.
Documentation des constructeurs et destructeur
JGoogleEmbed::__construct |
( |
JRegistry |
$options = null , |
|
|
JUri |
$uri = null |
|
) |
| |
Constructor.
- Paramètres:
-
JRegistry | $options | Google options object |
JUri | $uri | URL of the page being rendered |
- Depuis:
- 12.3
Définition à la ligne 42 du fichier embed.php.
{
$this->options = $options ? $options :
new JRegistry;
$this->uri = $uri ? $uri :
new JUri;
}
Documentation des fonctions membres
JGoogleEmbed::echoBody |
( |
| ) |
|
Method to output the body for the API
- Renvoie:
- null
- Depuis:
- 12.3
Définition à la ligne 97 du fichier embed.php.
JGoogleEmbed::echoHeader |
( |
| ) |
|
Method to output the javascript header for the embed API
- Renvoie:
- null
- Depuis:
- 12.3
Définition à la ligne 85 du fichier embed.php.
JGoogleEmbed::getBody |
( |
| ) |
|
|
abstract |
JGoogleEmbed::getHeader |
( |
| ) |
|
|
abstract |
JGoogleEmbed::getOption |
( |
|
$key | ) |
|
Get an option from the JGoogleEmbed instance.
- Paramètres:
-
string | $key | The name of the option to get. |
- Renvoie:
- mixed The option value.
- Depuis:
- 12.3
Définition à la ligne 111 du fichier embed.php.
{
return $this->options->get($key);
}
JGoogleEmbed::isSecure |
( |
| ) |
|
Method to retrieve the javascript header for the embed API
- Renvoie:
- string The header
- Depuis:
- 12.3
Définition à la ligne 55 du fichier embed.php.
Références JUri\getScheme().
{
return $this->uri->getScheme() == 'https';
}
JGoogleEmbed::setOption |
( |
|
$key, |
|
|
|
$value |
|
) |
| |
Set an option for the JGoogleEmbed instance.
- Paramètres:
-
string | $key | The name of the option to set. |
mixed | $value | The option value to set. |
- Renvoie:
- JGoogleEmbed This object for method chaining.
- Depuis:
- 12.3
Définition à la ligne 126 du fichier embed.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 :