Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
__construct ($config=array()) | |
display ($tpl=null) | |
assign () | |
assignRef ($key, &$val) | |
escape ($var) | |
get ($property, $default=null) | |
getModel ($name=null) | |
getLayout () | |
getLayoutTemplate () | |
getName () | |
setModel ($model, $default=false) | |
setLayout ($layout) | |
setLayoutExt ($value) | |
setEscape ($spec) | |
addTemplatePath ($path) | |
addHelperPath ($path) | |
loadTemplate ($tpl=null) | |
loadHelper ($hlp=null) | |
getForm () | |
Fonctions membres publiques inherited from JObject | |
__toString () | |
def ($property, $default=null) | |
getProperties ($public=true) | |
getError ($i=null, $toString=true) | |
getErrors () | |
set ($property, $value=null) | |
setProperties ($properties) | |
setError ($error) |
Fonctions membres protégées | |
_setPath ($type, $path) | |
_addPath ($type, $path) | |
_createFileName ($type, $parts=array()) |
Attributs protégés | |
$_name = null | |
$_models = array() | |
$_basePath = null | |
$_defaultModel = null | |
$_layout = 'default' | |
$_layoutExt = 'php' | |
$_layoutTemplate = '_' | |
$_path = array('template' => array(), 'helper' => array()) | |
$_template = null | |
$_output = null | |
$_escape = 'htmlspecialchars' | |
$_charset = 'UTF-8' | |
Attributs protégés inherited from JObject | |
$_errors = array() |
Définition à la ligne 21 du fichier legacy.php.
JViewLegacy::__construct | ( | $config = array() | ) |
Constructor
array | $config | A named configuration array for object construction. name: the name (optional) of the view (defaults to the view class name suffix). charset: the character set to use for display escape: the name (optional) of the function to use for escaping strings base_path: the parent path (optional) of the views directory (defaults to the component folder) template_plath: the path (optional) of the layout directory (defaults to base_path + /views/ + view name helper_path: the path (optional) of the helper files (defaults to base_path + /helpers/) layout: the layout (optional) to use to display the view |
Réimplémentée à partir de JObject.
Définition à la ligne 122 du fichier legacy.php.
Références JLog\add(), JUri\base(), et JLog\WARNING.
|
protected |
Adds to the search path for templates and resources.
string | $type | The type of path to add. |
mixed | $path | The directory or stream, or an array of either, to search. |
Définition à la ligne 751 du fichier legacy.php.
|
protected |
Create the filename for a resource
string | $type | The resource type to create the filename for |
array | $parts | An associative array of filename information |
Définition à la ligne 784 du fichier legacy.php.
|
protected |
Sets an entire array of search paths for templates or resources.
string | $type | The type of path to set, typically 'template'. |
mixed | $path | The new search path, or an array of search paths. If null or false, resets to the current directory only. |
Définition à la ligne 715 du fichier legacy.php.
Références JFactory\getApplication().
JViewLegacy::addHelperPath | ( | $path | ) |
Adds to the stack of helper script paths in LIFO order.
mixed | $path | A directory path or an array of paths. |
Définition à la ligne 592 du fichier legacy.php.
JViewLegacy::addTemplatePath | ( | $path | ) |
Adds to the stack of view script paths in LIFO order.
mixed | $path | A directory path or an array of paths. |
Définition à la ligne 578 du fichier legacy.php.
JViewLegacy::assign | ( | ) |
Assigns variables to the view script via differing strategies.
This method is overloaded; you can assign all the properties of an object, an associative array, or a single value by name.
You are not allowed to set variables that begin with an underscore; these are either private properties for JView or private variables within the template script itself.
$view = new JView;
// Assign directly $view->var1 = 'something'; $view->var2 = 'else';
// Assign by name and value $view->assign('var1', 'something'); $view->assign('var2', 'else');
// Assign by assoc-array $ary = array('var1' => 'something', 'var2' => 'else'); $view->assign($obj);
// Assign by object $obj = new stdClass; $obj->var1 = 'something'; $obj->var2 = 'else'; $view->assign($obj);
Définition à la ligne 257 du fichier legacy.php.
Références JLog\add(), et JLog\WARNING.
JViewLegacy::assignRef | ( | $key, | |
& | $val | ||
) |
Assign variable for the view (by reference).
You are not allowed to set variables that begin with an underscore; these are either private properties for JView or private variables within the template script itself.
$view = new JView;
// Assign by name and value $view->assignRef('var1', $ref);
// Assign directly $view->ref =
string | $key | The name for the reference in the view. |
mixed | &$val | The referenced variable. |
Définition à la ligne 331 du fichier legacy.php.
Références JLog\add(), et JLog\WARNING.
JViewLegacy::display | ( | $tpl = null | ) |
Execute and display a template script.
string | $tpl | The name of the template file to parse; automatically searches through the template paths. |
Réimplémentée dans JViewCategory, JViewCategories, et JViewCategoryfeed.
Définition à la ligne 209 du fichier legacy.php.
JViewLegacy::escape | ( | $var | ) |
Escapes a value for output in a view script.
If escaping mechanism is either htmlspecialchars or htmlentities, uses $_encoding setting.
mixed | $var | The output to escape. |
Définition à la ligne 356 du fichier legacy.php.
JViewLegacy::get | ( | $property, | |
$default = null |
|||
) |
Method to get data from a registered model or a property of the view
string | $property | The name of the method to call on the model or the property to get |
string | $default | The name of the model to reference or the default value [optional] |
Réimplémentée à partir de JObject.
Définition à la ligne 376 du fichier legacy.php.
JViewLegacy::getForm | ( | ) |
Returns the form object
Définition à la ligne 806 du fichier legacy.php.
JViewLegacy::getLayout | ( | ) |
JViewLegacy::getLayoutTemplate | ( | ) |
Get the layout template.
Définition à la ligne 443 du fichier legacy.php.
JViewLegacy::getModel | ( | $name = null | ) |
Method to get the model object
string | $name | The name of the model (optional) |
Définition à la ligne 419 du fichier legacy.php.
JViewLegacy::getName | ( | ) |
Method to get the view name
The model name by default parsed using the classname, or it can be set by passing a $config['name'] in the class constructor
Exception |
Définition à la ligne 459 du fichier legacy.php.
Références JText\_().
JViewLegacy::loadHelper | ( | $hlp = null | ) |
Load a helper file
string | $hlp | The name of the helper source file automatically searches the helper paths and compiles as needed. |
Définition à la ligne 689 du fichier legacy.php.
Références JPath\find(), et jimport().
JViewLegacy::loadTemplate | ( | $tpl = null | ) |
Load a template file – first look in the templates folder for an override
string | $tpl | The name of the template source file; automatically searches the template paths and compiles as needed. |
Exception |
Définition à la ligne 607 du fichier legacy.php.
Références JPath\find(), JFactory\getApplication(), JFactory\getLanguage(), jimport(), et JText\sprintf().
JViewLegacy::setEscape | ( | $spec | ) |
Sets the _escape() callback.
mixed | $spec | The callback for _escape() to use. |
Définition à la ligne 562 du fichier legacy.php.
Références JLog\add(), et JLog\WARNING.
JViewLegacy::setLayout | ( | $layout | ) |
Sets the layout name to use
string | $layout | The layout name or a string in format <template>:<layout file>=""> |
Définition à la ligne 512 du fichier legacy.php.
JViewLegacy::setLayoutExt | ( | $value | ) |
Allows a different extension for the layout files to be used
string | $value | The extension. |
Définition à la ligne 541 du fichier legacy.php.
JViewLegacy::setModel | ( | $model, | |
$default = false |
|||
) |
Method to add a model to the view. We support a multiple model single view system by which models are referenced by classname. A caveat to the classname referencing is that any classname prepended by JModel will be referenced by the name without JModel, eg. JModelCategory is just Category.
JModelLegacy | $model | The model to add to the view. |
boolean | $default | Is this the default model? |
Définition à la ligne 491 du fichier legacy.php.
|
protected |
Définition à la ligne 42 du fichier legacy.php.
|
protected |
Définition à la ligne 106 du fichier legacy.php.
|
protected |
Définition à la ligne 49 du fichier legacy.php.
|
protected |
Définition à la ligne 99 du fichier legacy.php.
|
protected |
Définition à la ligne 56 du fichier legacy.php.
|
protected |
Définition à la ligne 63 du fichier legacy.php.
|
protected |
Définition à la ligne 70 du fichier legacy.php.
|
protected |
Définition à la ligne 35 du fichier legacy.php.
|
protected |
Définition à la ligne 28 du fichier legacy.php.
|
protected |
Définition à la ligne 91 du fichier legacy.php.
|
protected |
Définition à la ligne 77 du fichier legacy.php.
|
protected |
Définition à la ligne 84 du fichier legacy.php.