Cheetah
Public Member Functions | List of all members
HTMLPurifier_TokenFactory Class Reference

Public Member Functions

 __construct ()
 
 createStart ($name, $attr=array())
 
 createEnd ($name)
 
 createEmpty ($name, $attr=array())
 
 createText ($data)
 
 createComment ($data)
 

Detailed Description

Factory for token generation.

Note
Doing some benchmarking indicates that the new operator is much slower than the clone operator (even discounting the cost of the constructor). This class is for that optimization. Other then that, there's not much point as we don't maintain parallel HTMLPurifier_Token hierarchies (the main reason why you'd want to use an abstract factory).

Definition at line 8755 of file HTMLPurifier.standalone.php.

Constructor & Destructor Documentation

◆ __construct()

HTMLPurifier_TokenFactory::__construct ( )

Generates blank prototypes for cloning.

Definition at line 8787 of file HTMLPurifier.standalone.php.

Member Function Documentation

◆ createComment()

HTMLPurifier_TokenFactory::createComment (   $data)

Creates a HTMLPurifier_Token_Comment.

Parameters
string$dataData of comment token
Returns
HTMLPurifier_Token_Comment Generated HTMLPurifier_Token_Comment

Definition at line 8851 of file HTMLPurifier.standalone.php.

◆ createEmpty()

HTMLPurifier_TokenFactory::createEmpty (   $name,
  $attr = array() 
)

Creates a HTMLPurifier_Token_Empty.

Parameters
string$nameTag name
array$attrAssociative array of attributes
Returns
HTMLPurifier_Token_Empty Generated HTMLPurifier_Token_Empty

Definition at line 8827 of file HTMLPurifier.standalone.php.

◆ createEnd()

HTMLPurifier_TokenFactory::createEnd (   $name)

Creates a HTMLPurifier_Token_End.

Parameters
string$nameTag name
Returns
HTMLPurifier_Token_End Generated HTMLPurifier_Token_End

Definition at line 8814 of file HTMLPurifier.standalone.php.

◆ createStart()

HTMLPurifier_TokenFactory::createStart (   $name,
  $attr = array() 
)

Creates a HTMLPurifier_Token_Start.

Parameters
string$nameTag name
array$attrAssociative array of attributes
Returns
HTMLPurifier_Token_Start Generated HTMLPurifier_Token_Start

Definition at line 8802 of file HTMLPurifier.standalone.php.

◆ createText()

HTMLPurifier_TokenFactory::createText (   $data)

Creates a HTMLPurifier_Token_Text.

Parameters
string$dataData of text token
Returns
HTMLPurifier_Token_Text Generated HTMLPurifier_Token_Text

Definition at line 8839 of file HTMLPurifier.standalone.php.


The documentation for this class was generated from the following file: