API15:JFilterInput/ construct
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Constructor for inputFilter class. Only first parameter is required.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
__construct($tagsArray=array(), $attrArray=array(), $tagsMethod=0, $attrMethod=0, $xssAuto=1)
| Parameter Name | Default Value | Description |
|---|---|---|
| $tagsArray | array() | $tagsArray list of user-defined tags |
| $attrArray | array() | $attrArray list of user-defined attributes |
| $tagsMethod | 0 | $tagsMethod WhiteList method = 0, BlackList method = 1 |
| $attrMethod | 0 | $attrMethod WhiteList method = 0, BlackList method = 1 |
| $xssAuto | 1 | $xssAuto Only auto clean essentials = 0, Allow clean blacklisted tags/attr = 1 |
Defined in
libraries/joomla/filter/filterinput.php
Importing
jimport( 'joomla.filter.filterinput' );
Source Body
function __construct($tagsArray = array(), $attrArray = array(), $tagsMethod = 0, $attrMethod = 0, $xssAuto = 1) { // Make sure user defined arrays are in lowercase $tagsArray = array_map('strtolower', (array) $tagsArray); $attrArray = array_map('strtolower', (array) $attrArray); // Assign member variables $this->tagsArray = $tagsArray; $this->attrArray = $attrArray; $this->tagsMethod = $tagsMethod; $this->attrMethod = $attrMethod; $this->xssAuto = $xssAuto; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
