API15

JFilterInput/ construct

From Joomla! Documentation

< API15:JFilterInput
Revision as of 17:21, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Constructor for inputFilter class. Only first parameter is required. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JFilterInput/_...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" 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.

[Edit Descripton]

Template:Description:JFilterInput/ construct

Syntax[edit]

__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[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;
}

[Edit See Also] Template:SeeAlso:JFilterInput/ construct

Examples[edit]

<CodeExamplesForm />