API17

Difference between revisions of "JFilterInput"

From Joomla! Documentation

m (→‎User contributed notes: moving preparation)
m (moving preparation)
Line 14: Line 14:
 
|-
 
|-
 
|public  
 
|public  
|[[JFilterInput::__construct/11.1|__construct]]
+
|[[API17:JFilterInput::__construct|__construct]]
 
|Constructor for inputFilter class.  
 
|Constructor for inputFilter class.  
 
|-
 
|-
 
|public static  
 
|public static  
|[[JFilterInput::checkAttribute/11.1|checkAttribute]]
+
|[[API17:JFilterInput::checkAttribute|checkAttribute]]
 
|Function to determine if contents of an attribute are safe.  
 
|Function to determine if contents of an attribute are safe.  
 
|-
 
|-
 
|public  
 
|public  
|[[JFilterInput::clean/11.1|clean]]
+
|[[API17:JFilterInput::clean|clean]]
 
|Method to be called by another php script.  
 
|Method to be called by another php script.  
 
|-
 
|-
 
|public   
 
|public   
|[[JFilterInput::getInstance/11.1|getInstance]]
+
|[[API17:JFilterInput::getInstance|getInstance]]
 
|Returns an input filter object, only creating it if it doesn't already exist.  
 
|Returns an input filter object, only creating it if it doesn't already exist.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JFilterInput::_cleanAttributes/11.1|_cleanAttributes]]
+
|[[API17:JFilterInput::_cleanAttributes|_cleanAttributes]]
 
|Internal method to strip a tag of certain attributes.  
 
|Internal method to strip a tag of certain attributes.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JFilterInput::_cleanTags/11.1|_cleanTags]]
+
|[[API17:JFilterInput::_cleanTags|_cleanTags]]
 
|Internal method to strip a string of certain tags.  
 
|Internal method to strip a string of certain tags.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JFilterInput::_decode/11.1|_decode]]
+
|[[API17:JFilterInput::_decode|_decode]]
 
|Try to convert to plaintext.  
 
|Try to convert to plaintext.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JFilterInput::_remove/11.1|_remove]]
+
|[[API17:JFilterInput::_remove|_remove]]
 
|Internal method to iteratively remove all unwanted tags and attributes.  
 
|Internal method to iteratively remove all unwanted tags and attributes.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/filter/filterinput.php
 
* '''Defined in''' libraries/joomla/filter/filterinput.php
* '''Extends''' [[JObject/11.1|JObject]]
+
* '''Extends''' [[API17:JObject|JObject]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.filter.filterinput' );</source>
 
<source lang="php">jimport( 'joomla.filter.filterinput' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JFilterInput source code''' on [[jplatform:filter/filterinput.php|BitBucket]]
 
* {{JVer|11.1}} '''JFilterInput source code''' on [[jplatform:filter/filterinput.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Filter/11.1|Filter]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Filter|Filter]]
* [[JFilterInput|Other versions of JFilterInput]]
+
* [[API17:JFilterInput|Other versions of JFilterInput]]
 
{{SeeAlso:JFilterInput}}
 
{{SeeAlso:JFilterInput}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">

Revision as of 20:40, 11 May 2013

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

Joomla 11.1 JFilterInput[edit]

Description[edit]

Template:Description:JFilterInput [Edit Descripton]

Methods[edit]

Visibility Method name Description
public __construct Constructor for inputFilter class.
public static checkAttribute Function to determine if contents of an attribute are safe.
public clean Method to be called by another php script.
public getInstance Returns an input filter object, only creating it if it doesn't already exist.
protected _cleanAttributes Internal method to strip a tag of certain attributes.
protected _cleanTags Internal method to strip a string of certain tags.
protected _decode Try to convert to plaintext.
protected _remove Internal method to iteratively remove all unwanted tags and attributes.
  • Defined in libraries/joomla/filter/filterinput.php
  • Extends JObject

Importing[edit]

jimport( 'joomla.filter.filterinput' );

See also[edit]

Template:SeeAlso:JFilterInput [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />