PHP Class Horde_Text_Filter_Xss, horde

Filter parameters: - charset: (string) The charset of the text. DEFAULT: UTF-8 - noprefetch: (boolean) Disable DNS pre-fetching? See: https://developer.mozilla.org/En/Controlling_DNS_prefetching DEFAULT: false - return_document: (string) If true, returns a full HTML representation of the document. DEFAULT: false (returns the contents contained inside the BODY tag) - return_dom: (boolean) If true, return a Horde_Domhtml object instead of HTML text (overrides return_document). DEFAULT: false - strip_styles: (boolean) Strip style tags? DEFAULT: true - strip_style_attributes: (boolean) Strip style attributes in all tags? DEFAULT: true
Author: Jan Schneider ([email protected])
Author: Michael Slusarz ([email protected])
Inheritance: extends Horde_Text_Filter_Base
Exibir arquivo Open project: horde/horde

Protected Properties

Property Type Description
$_params array Filter parameters.

Public Methods

Method Description
postProcess ( string $text ) : string | Horde_Domhtml Executes any code necessary after applying the filter patterns.

Protected Methods

Method Description
_node ( DOMElement $node ) : string Process DOM node.

Method Details

_node() protected method

Process DOM node.
protected _node ( DOMElement $node ) : string
$node DOMElement Element node.
return string The plaintext representation.

postProcess() public method

Executes any code necessary after applying the filter patterns.
public postProcess ( string $text ) : string | Horde_Domhtml
$text string The text after the filtering.
return string | Horde_Domhtml The modified text or a Domhtml object if the 'return_dom' parameter is set.

Property Details

$_params protected_oe property

Filter parameters.
protected array $_params
return array