API16

JFilterInput/ construct

From Joomla! Documentation

< API16:JFilterInput

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Constructor for inputFilter class. Only first parameter is required.


<! removed transcluded page call, red link never existed >

Syntax[edit]

__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[edit]

libraries/joomla/filter/filterinput.php

Importing[edit]

jimport( 'joomla.filter.filterinput' );

Source Body[edit]

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[edit]

Code Examples[edit]