API16

Difference between revisions of "JFilterInput/ construct"

From Joomla! Documentation

< API16:JFilterInput
(New page: ===Description=== Constructor for inputFilter class. Only first parameter is required. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JFilterInput/_...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Constructor for inputFilter class. Only first parameter is required.
 
Constructor for inputFilter class. Only first parameter is required.
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JFilterInput/__construct|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JFilterInput/__construct}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 60: Line 58:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JFilterInput/__construct|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JFilterInput/__construct}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=__construct
 
  category=__construct
 
  category=JFilterInput
 
  category=JFilterInput
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:40, 24 March 2017

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]