JRequest: Difference between revisions
From Joomla! Documentation
No edit summary |
m →See also: added link to "Retrieving and Filtering GET and POST requests with JRequest::getVar" |
||
| Line 91: | Line 91: | ||
* {{JVer|11.1}} Subpackage [[Subpackage Environment/11.1|Environment]] | * {{JVer|11.1}} Subpackage [[Subpackage Environment/11.1|Environment]] | ||
* [[JRequest|Other versions of JRequest]] | * [[JRequest|Other versions of JRequest]] | ||
* [[Retrieving_and_Filtering_GET_and_POST_requests_with_JRequest::getVar|Retrieving and Filtering GET and POST requests with JRequest::getVar]] | |||
{{SeeAlso:JRequest}} | {{SeeAlso:JRequest}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JRequest|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JRequest|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
===User contributed notes=== | ===User contributed notes=== | ||
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
Revision as of 07:14, 1 July 2012
JRequest
Description
Template:Description:JRequest [Edit Descripton]
Note
JRequest is deprecated get the JInput/11.1 object from the application instead
Methods
| Visibility | Method name | Description |
|---|---|---|
| public static | _cleanArray | Adds an array to the GLOBALS array and checks that the GLOBALS variable is not being attacked. |
| public static | _cleanVar | Clean up an input variable. |
| public static | checkToken | Checks for a form token in the request. |
| public static | clean | Cleans the request from script injection. |
| public static | get | Fetches and returns a request array. |
| public static | getBool | Fetches and returns a given filtered variable. |
| public static | getCmd | Fetches and returns a given filtered variable. |
| public static | getFloat | Fetches and returns a given filtered variable. |
| public static | getInt | Fetches and returns a given filtered variable. |
| public static | getMethod | Gets the request method. |
| public static | getString | Fetches and returns a given filtered variable. |
| public static | getURI | Gets the full request path. |
| public static | getVar | Fetches and returns a given variable. |
| public static | getWord | Fetches and returns a given filtered variable. |
| public static | set | Sets a request variable. |
| public static | setVar | Set a variabe in one of the request variables. |
| protected static | _stripSlashesRecursive | Strips slashes recursively on an array. |
- Defined in libraries/joomla/environment/request.php
Importing
jimport( 'joomla.environment.request' );
See also
JRequest source code on BitBucket
Subpackage Environment- Other versions of JRequest
- Retrieving and Filtering GET and POST requests with JRequest::getVar
Template:SeeAlso:JRequest [Edit See Also]
User contributed notes
<CodeExamplesForm />