JFilterInput/ construct: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Constructor for inputFilter class. Only first parameter is required.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JFilterInput/_... |
m removing red link to edit, no existant pages |
||
Line 3: | Line 3: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
Line 61: | Line 61: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Examples=== | ===Examples=== | ||
Line 76: | Line 76: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API16]] |
Revision as of 05:07, 13 May 2013
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() | List of user-defined tags |
$attrArray | array() | List of user-defined attributes |
$tagsMethod | 0 | WhiteList method = 0, BlackList method = 1 |
$attrMethod | 0 | WhiteList method = 0, BlackList method = 1 |
$xssAuto | 1 | 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 />