JFilterInput/ construct: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
Line 62: | Line 62: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=__construct | category=__construct | ||
category=JFilterInput | category=JFilterInput | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* |
Latest revision as of 01:40, 25 March 2017
Description
Constructor for inputFilter class. Only first parameter is required.
<! 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 transcluded page call, red link never existed >
Examples
Code Examples