| ILIAS
    release_5-4 Revision v5.4.26-12-gabc799a52e6
    | 
Factory for token generation. More...
 Collaboration diagram for HTMLPurifier_TokenFactory:
 Collaboration diagram for HTMLPurifier_TokenFactory:| Public Member Functions | |
| __construct () | |
| Generates blank prototypes for cloning.  More... | |
| createStart ($name, $attr=array()) | |
| Creates a HTMLPurifier_Token_Start.  More... | |
| createEnd ($name) | |
| Creates a HTMLPurifier_Token_End.  More... | |
| createEmpty ($name, $attr=array()) | |
| Creates a HTMLPurifier_Token_Empty.  More... | |
| createText ($data) | |
| Creates a HTMLPurifier_Token_Text.  More... | |
| createComment ($data) | |
| Creates a HTMLPurifier_Token_Comment.  More... | |
| Private Attributes | |
| $p_start | |
| @type HTMLPurifier_Token_Start  More... | |
| $p_end | |
| @type HTMLPurifier_Token_End  More... | |
| $p_empty | |
| @type HTMLPurifier_Token_Empty  More... | |
| $p_text | |
| @type HTMLPurifier_Token_Text  More... | |
| $p_comment | |
| @type HTMLPurifier_Token_Comment  More... | |
Factory for token generation.
Definition at line 14 of file TokenFactory.php.
| HTMLPurifier_TokenFactory::__construct | ( | ) | 
| HTMLPurifier_TokenFactory::createComment | ( | $data | ) | 
Creates a HTMLPurifier_Token_Comment.
| string | $data | Data of comment token | 
Definition at line 110 of file TokenFactory.php.
References $data, and $p_comment.
| HTMLPurifier_TokenFactory::createEmpty | ( | $name, | |
| $attr = array() | |||
| ) | 
Creates a HTMLPurifier_Token_Empty.
| string | $name | Tag name | 
| array | $attr | Associative array of attributes | 
Definition at line 86 of file TokenFactory.php.
| HTMLPurifier_TokenFactory::createEnd | ( | $name | ) | 
Creates a HTMLPurifier_Token_End.
| string | $name | Tag name | 
Definition at line 73 of file TokenFactory.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 61 of file TokenFactory.php.
| HTMLPurifier_TokenFactory::createText | ( | $data | ) | 
Creates a HTMLPurifier_Token_Text.
| string | $data | Data of text token | 
Definition at line 98 of file TokenFactory.php.
| 
 | private | 
@type HTMLPurifier_Token_Comment
Definition at line 41 of file TokenFactory.php.
Referenced by createComment().
| 
 | private | 
@type HTMLPurifier_Token_Empty
Definition at line 31 of file TokenFactory.php.
Referenced by createEmpty().
| 
 | private | 
@type HTMLPurifier_Token_End
Definition at line 26 of file TokenFactory.php.
Referenced by createEnd().
| 
 | private | 
@type HTMLPurifier_Token_Start
Definition at line 21 of file TokenFactory.php.
Referenced by createStart().
| 
 | private | 
@type HTMLPurifier_Token_Text
Definition at line 36 of file TokenFactory.php.
Referenced by createText().