Liste de tous les membres
Description détaillée
Définition à la ligne 21 du fichier html.php.
Documentation des constructeurs et destructeur
JViewHtml::__construct |
( |
JModel |
$model, |
|
|
SplPriorityQueue |
$paths = null |
|
) |
| |
Method to instantiate the view.
- Paramètres:
-
JModel | $model | The model object. |
SplPriorityQueue | $paths | The paths queue. |
- Depuis:
- 12.1
Définition à la ligne 47 du fichier html.php.
Documentation des fonctions membres
JViewHtml::__toString |
( |
| ) |
|
Magic toString method that is a proxy for the render method.
- Renvoie:
- string
- Depuis:
- 12.1
Définition à la ligne 62 du fichier html.php.
JViewHtml::escape |
( |
|
$output | ) |
|
Method to escape output.
- Paramètres:
-
string | $output | The output to escape. |
- Renvoie:
- string The escaped output.
- Voir également:
- JView::escape()
- Depuis:
- 12.1
Réimplémentée à partir de JViewBase.
Définition à la ligne 77 du fichier html.php.
{
return htmlspecialchars($output, ENT_COMPAT, 'UTF-8');
}
Method to get the view layout.
- Renvoie:
- string The layout name.
- Depuis:
- 12.1
Définition à la ligne 90 du fichier html.php.
JViewHtml::getPath |
( |
|
$layout | ) |
|
Method to get the layout path.
- Paramètres:
-
string | $layout | The layout name. |
- Renvoie:
- mixed The layout file name if found, false otherwise.
- Depuis:
- 12.1
Définition à la ligne 104 du fichier html.php.
Références JPath\clean(), et JPath\find().
Method to get the view paths.
- Renvoie:
- SplPriorityQueue The paths queue.
- Depuis:
- 12.1
Définition à la ligne 122 du fichier html.php.
Method to load the paths queue.
- Renvoie:
- SplPriorityQueue The paths queue.
- Depuis:
- 12.1
Définition à la ligne 197 du fichier html.php.
{
return new SplPriorityQueue;
}
Method to render the view.
- Renvoie:
- string The rendered view.
- Depuis:
- 12.1
- Exceptions:
-
Implémente JView.
Définition à la ligne 135 du fichier html.php.
{
if (!$path)
{
throw new RuntimeException('Layout Path Not Found');
}
ob_start();
include $path;
$output = ob_get_clean();
return $output;
}
JViewHtml::setLayout |
( |
|
$layout | ) |
|
Method to set the view layout.
- Paramètres:
-
string | $layout | The layout name. |
- Renvoie:
- JViewHtml Method supports chaining.
- Depuis:
- 12.1
Définition à la ligne 167 du fichier html.php.
JViewHtml::setPaths |
( |
SplPriorityQueue |
$paths | ) |
|
Method to set the view paths.
- Paramètres:
-
SplPriorityQueue | $paths | The paths queue. |
- Renvoie:
- JViewHtml Method supports chaining.
- Depuis:
- 12.1
Définition à la ligne 183 du fichier html.php.
Documentation des données membres
JViewHtml::$layout = 'default' |
|
protected |
La documentation de cette classe a été générée à partir du fichier suivant :