|
Cheetah
|
Public Member Functions | |
| __construct () | |
| createStart ($name, $attr=array()) | |
| createEnd ($name) | |
| createEmpty ($name, $attr=array()) | |
| createText ($data) | |
| createComment ($data) | |
Factory for token generation.
Definition at line 8755 of file HTMLPurifier.standalone.php.
| HTMLPurifier_TokenFactory::__construct | ( | ) |
Generates blank prototypes for cloning.
Definition at line 8787 of file HTMLPurifier.standalone.php.
| HTMLPurifier_TokenFactory::createComment | ( | $data | ) |
Creates a HTMLPurifier_Token_Comment.
| string | $data | Data of comment token |
Definition at line 8851 of file HTMLPurifier.standalone.php.
| HTMLPurifier_TokenFactory::createEmpty | ( | $name, | |
$attr = array() |
|||
| ) |
Creates a HTMLPurifier_Token_Empty.
| string | $name | Tag name |
| array | $attr | Associative array of attributes |
Definition at line 8827 of file HTMLPurifier.standalone.php.
| HTMLPurifier_TokenFactory::createEnd | ( | $name | ) |
Creates a HTMLPurifier_Token_End.
| string | $name | Tag name |
Definition at line 8814 of file HTMLPurifier.standalone.php.
| HTMLPurifier_TokenFactory::createStart | ( | $name, | |
$attr = array() |
|||
| ) |
Creates a HTMLPurifier_Token_Start.
| string | $name | Tag name |
| array | $attr | Associative array of attributes |
Definition at line 8802 of file HTMLPurifier.standalone.php.
| HTMLPurifier_TokenFactory::createText | ( | $data | ) |
Creates a HTMLPurifier_Token_Text.
| string | $data | Data of text token |
Definition at line 8839 of file HTMLPurifier.standalone.php.