Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
__construct ($config=array()) | |
addViewPath ($path) | |
authorise ($task) | |
display ($cachable=false, $urlparams=array()) | |
execute ($task) | |
getModel ($name= '', $prefix= '', $config=array()) | |
getName () | |
getTask () | |
getTasks () | |
getView ($name= '', $type= '', $prefix= '', $config=array()) | |
redirect () | |
registerDefaultTask ($method) | |
registerTask ($task, $method) | |
unregisterTask ($task) | |
setMessage ($text, $type= 'message') | |
setRedirect ($url, $msg=null, $type=null) | |
Fonctions membres publiques inherited from JObject | |
__toString () | |
def ($property, $default=null) | |
get ($property, $default=null) | |
getProperties ($public=true) | |
getError ($i=null, $toString=true) | |
getErrors () | |
set ($property, $value=null) | |
setProperties ($properties) | |
setError ($error) |
Fonctions membres publiques statiques | |
static | addModelPath ($path, $prefix= '') |
static | getInstance ($prefix, $config=array()) |
Fonctions membres protégées | |
addPath ($type, $path) | |
checkEditId ($context, $id) | |
createModel ($name, $prefix= '', $config=array()) | |
createView ($name, $prefix= '', $type= '', $config=array()) | |
holdEditId ($context, $id) | |
releaseEditId ($context, $id) | |
setPath ($type, $path) |
Fonctions membres protégées statiques | |
static | createFileName ($type, $parts=array()) |
Attributs protégés | |
$basePath | |
$default_view | |
$doTask | |
$message | |
$messageType | |
$methods | |
$name | |
$model_prefix | |
$paths | |
$redirect | |
$task | |
$taskMap | |
$input | |
Attributs protégés inherited from JObject | |
$_errors = array() |
Attributs protégés statiques | |
static | $instance |
Définition à la ligne 22 du fichier legacy.php.
JControllerLegacy::__construct | ( | $config = array() | ) |
Constructor.
array | $config | An optional associative array of configuration settings. Recognized key values include 'name', 'default_task', 'model_path', and 'view_path' (this list is not meant to be comprehensive). |
Réimplémentée à partir de JObject.
Réimplémentée dans JControllerForm, et JControllerAdmin.
Définition à la ligne 319 du fichier legacy.php.
Références JLog\addLogger(), JLog\ALL, et JFactory\getApplication().
|
static |
Adds to the stack of model paths in LIFO order.
mixed | $path | The directory (string), or list of directories (array) to add. |
string | $prefix | A prefix for models |
Définition à la ligne 154 du fichier legacy.php.
Références JModelLegacy\addIncludePath().
|
protected |
Adds to the search path for templates and resources.
string | $type | The path type (e.g. 'model', 'view'). |
mixed | $path | The directory string or stream array to search. |
Définition à la ligne 448 du fichier legacy.php.
Références JPath\check().
JControllerLegacy::addViewPath | ( | $path | ) |
Add one or more view paths to the controller's stack, in LIFO order.
mixed | $path | The directory (string) or list of directories (array) to add. |
Définition à la ligne 478 du fichier legacy.php.
JControllerLegacy::authorise | ( | $task | ) |
Authorisation check
string | $task | The ACO Section Value to check access on. |
Définition à la ligne 495 du fichier legacy.php.
Références JLog\add(), et JLog\WARNING.
|
protected |
Method to check whether an ID is in the edit list.
string | $context | The context for the session storage. |
integer | $id | The ID of the record to add to the edit list. |
Définition à la ligne 512 du fichier legacy.php.
Références JLog\add(), JFactory\getApplication(), et JLog\INFO.
|
staticprotected |
Create the filename for a resource.
string | $type | The resource type to create the filename for. |
array | $parts | An associative array of filename information. Optional. |
Définition à la ligne 170 du fichier legacy.php.
|
protected |
Method to load and return a model object.
string | $name | The name of the model. |
string | $prefix | Optional model prefix. |
array | $config | Configuration array for the model. Optional. |
Définition à la ligne 557 du fichier legacy.php.
Références JModelLegacy\getInstance().
|
protected |
Method to load and return a view object. This method first looks in the current template directory for a match and, failing that, uses a default set path to load the view class file.
Note the "name, prefix, type" order of parameters, which differs from the "name, type, prefix" order used in related public methods.
string | $name | The name of the view. |
string | $prefix | Optional prefix for the view class name. |
string | $type | The type of view. |
array | $config | Configuration array for the view. Optional. |
Exception |
Définition à la ligne 587 du fichier legacy.php.
Références JPath\find(), jimport(), et JText\sprintf().
JControllerLegacy::display | ( | $cachable = false , |
|
$urlparams = array() |
|||
) |
Typical view method for MVC based architecture
This function is provide as a default implementation, in most cases you will need to override it in your own controllers.
boolean | $cachable | If true, the view output will be cached |
array | $urlparams | An array of safe url parameters and their variable types, for valid values see JFilterInput::clean(). |
Réimplémentée dans JControllerAdmin.
Définition à la ligne 633 du fichier legacy.php.
Références JFactory\getApplication(), JFactory\getCache(), JFactory\getConfig(), et JFactory\getDocument().
JControllerLegacy::execute | ( | $task | ) |
Execute a task by triggering a method in the derived class.
string | $task | The task to perform. If no matching task is found, the '__default' task is executed, if defined. |
Exception |
Définition à la ligne 701 du fichier legacy.php.
Références JText\sprintf().
|
static |
Method to get a singleton controller instance.
string | $prefix | The prefix for the controller. |
array | $config | An array of optional constructor options. |
Exception | if the controller cannot be loaded. |
Définition à la ligne 224 du fichier legacy.php.
Références JFactory\getApplication(), JFilterInput\getInstance(), et JText\sprintf().
JControllerLegacy::getModel | ( | $name = '' , |
|
$prefix = '' , |
|||
$config = array() |
|||
) |
Method to get a model object, loading it if required.
string | $name | The model name. Optional. |
string | $prefix | The class prefix. Optional. |
array | $config | Configuration array for model. Optional. |
Réimplémentée dans JControllerForm.
Définition à la ligne 736 du fichier legacy.php.
Références JFactory\getApplication().
JControllerLegacy::getName | ( | ) |
Method to get the controller name
The dispatcher name is set 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 782 du fichier legacy.php.
Références JText\_().
JControllerLegacy::getTask | ( | ) |
Get the last task that is being performed or was most recently performed.
Définition à la ligne 804 du fichier legacy.php.
JControllerLegacy::getTasks | ( | ) |
Gets the available tasks in the controller.
Définition à la ligne 816 du fichier legacy.php.
JControllerLegacy::getView | ( | $name = '' , |
|
$type = '' , |
|||
$prefix = '' , |
|||
$config = array() |
|||
) |
Method to get a reference to the current view and load it if necessary.
string | $name | The view name. Optional, defaults to the controller name. |
string | $type | The view type. Optional. |
string | $prefix | The class prefix. Optional. |
array | $config | Configuration array for view. Optional. |
Exception |
Définition à la ligne 834 du fichier legacy.php.
Références JText\sprintf().
|
protected |
Method to add a record ID to the edit list.
string | $context | The context for the session storage. |
integer | $id | The ID of the record to add to the edit list. |
Définition à la ligne 878 du fichier legacy.php.
Références JLog\add(), JFactory\getApplication(), et JLog\INFO.
JControllerLegacy::redirect | ( | ) |
Redirects the browser or returns false if no redirect is set.
Définition à la ligne 913 du fichier legacy.php.
Références JFactory\getApplication().
JControllerLegacy::registerDefaultTask | ( | $method | ) |
Register the default task to perform if a mapping is not found.
string | $method | The name of the method in the derived class to perform if a named task is not found. |
Définition à la ligne 938 du fichier legacy.php.
JControllerLegacy::registerTask | ( | $task, | |
$method | |||
) |
Register (map) a task to a method in the class.
string | $task | The task. |
string | $method | The name of the method in the derived class to perform for this task. |
Définition à la ligne 955 du fichier legacy.php.
|
protected |
Method to check whether an ID is in the edit list.
string | $context | The context for the session storage. |
integer | $id | The ID of the record to add to the edit list. |
Définition à la ligne 991 du fichier legacy.php.
Références JLog\add(), JFactory\getApplication(), et JLog\INFO.
JControllerLegacy::setMessage | ( | $text, | |
$type = 'message' |
|||
) |
Sets the internal message that is passed with a redirect
string | $text | Message to display on redirect. |
string | $type | Message type. Optional, defaults to 'message'. |
Définition à la ligne 1030 du fichier legacy.php.
|
protected |
Sets an entire array of search paths for resources.
string | $type | The type of path to set, typically 'view' or 'model'. |
string | $path | The new set of search paths. If null or false, resets to the current directory only. |
Définition à la ligne 1050 du fichier legacy.php.
JControllerLegacy::setRedirect | ( | $url, | |
$msg = null , |
|||
$type = null |
|||
) |
Set a URL for browser redirection.
string | $url | URL to redirect to. |
string | $msg | Message to display on redirect. Optional, defaults to value set internally by controller, if any. |
string | $type | Message type. Optional, defaults to 'message' or the type set by a previous call to setMessage. |
Définition à la ligne 1070 du fichier legacy.php.
JControllerLegacy::unregisterTask | ( | $task | ) |
Unregister (unmap) a task in the class.
string | $task | The task. |
Définition à la ligne 974 du fichier legacy.php.
|
protected |
Définition à la ligne 31 du fichier legacy.php.
|
protected |
Définition à la ligne 39 du fichier legacy.php.
|
protected |
Définition à la ligne 48 du fichier legacy.php.
|
protected |
Définition à la ligne 136 du fichier legacy.php.
|
staticprotected |
Définition à la ligne 144 du fichier legacy.php.
|
protected |
Définition à la ligne 57 du fichier legacy.php.
|
protected |
Définition à la ligne 66 du fichier legacy.php.
|
protected |
Définition à la ligne 75 du fichier legacy.php.
|
protected |
Définition à la ligne 92 du fichier legacy.php.
|
protected |
Définition à la ligne 84 du fichier legacy.php.
|
protected |
Définition à la ligne 101 du fichier legacy.php.
|
protected |
Définition à la ligne 110 du fichier legacy.php.
|
protected |
Définition à la ligne 119 du fichier legacy.php.
|
protected |
Définition à la ligne 128 du fichier legacy.php.