Cheetah
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
HTMLPurifier_EntityParser Class Reference

Public Member Functions

 __construct ()
 
 substituteTextEntities ($string)
 
 substituteAttrEntities ($string)
 
 substituteNonSpecialEntities ($string)
 
 substituteSpecialEntities ($string)
 

Protected Member Functions

 entityCallback ($matches)
 
 nonSpecialEntityCallback ($matches)
 
 specialEntityCallback ($matches)
 

Protected Attributes

 $_entity_lookup
 
 $_textEntitiesRegex
 
 $_attrEntitiesRegex
 
 $_semiOptionalPrefixRegex
 
 $_substituteEntitiesRegex
 
 $_special_dec2str
 
 $_special_ent2dec
 

Detailed Description

Handles referencing and derefencing character entities

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

Constructor & Destructor Documentation

◆ __construct()

HTMLPurifier_EntityParser::__construct ( )

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

Member Function Documentation

◆ entityCallback()

HTMLPurifier_EntityParser::entityCallback (   $matches)
protected

Callback function for substituteNonSpecialEntities() that does the work.

Parameters
array$matchesPCRE matches array, with 0 the entire match, and either index 1, 2 or 3 set with a hex value, dec value, or string (respectively).
Returns
string Replacement string.

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

◆ nonSpecialEntityCallback()

HTMLPurifier_EntityParser::nonSpecialEntityCallback (   $matches)
protected

Callback function for substituteNonSpecialEntities() that does the work.

Parameters
array$matchesPCRE matches array, with 0 the entire match, and either index 1, 2 or 3 set with a hex value, dec value, or string (respectively).
Returns
string Replacement string.

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

◆ specialEntityCallback()

HTMLPurifier_EntityParser::specialEntityCallback (   $matches)
protected

Callback function for substituteSpecialEntities() that does the work.

This callback has same syntax as nonSpecialEntityCallback().

Parameters
array$matchesPCRE-style matches array, with 0 the entire match, and either index 1, 2 or 3 set with a hex value, dec value, or string (respectively).
Returns
string Replacement string.

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

◆ substituteAttrEntities()

HTMLPurifier_EntityParser::substituteAttrEntities (   $string)

Substitute entities with the parsed equivalents. Use this on attribute contents in documents.

Parameters
string$stringString to have entities parsed.
Returns
string Parsed string.

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

◆ substituteNonSpecialEntities()

HTMLPurifier_EntityParser::substituteNonSpecialEntities (   $string)

Substitutes non-special entities with their parsed equivalents. Since running this whenever you have parsed character is t3h 5uck, we run it before everything else.

Parameters
string$stringString to have non-special entities parsed.
Returns
string Parsed string.

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

◆ substituteSpecialEntities()

HTMLPurifier_EntityParser::substituteSpecialEntities (   $string)

Substitutes only special entities with their parsed equivalents.

@notice We try to avoid calling this function because otherwise, it would have to be called a lot (for every parsed section).

Parameters
string$stringString to have non-special entities parsed.
Returns
string Parsed string.

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

◆ substituteTextEntities()

HTMLPurifier_EntityParser::substituteTextEntities (   $string)

Substitute entities with the parsed equivalents. Use this on textual data in an HTML document (as opposed to attributes.)

Parameters
string$stringString to have entities parsed.
Returns
string Parsed string.

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

Member Data Documentation

◆ $_attrEntitiesRegex

HTMLPurifier_EntityParser::$_attrEntitiesRegex
protected

Callback regex string for entities in attributes. @type string

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

◆ $_entity_lookup

HTMLPurifier_EntityParser::$_entity_lookup
protected

Reference to entity lookup table. @type HTMLPurifier_EntityLookup

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

◆ $_semiOptionalPrefixRegex

HTMLPurifier_EntityParser::$_semiOptionalPrefixRegex
protected

Tests if the beginning of a string is a semi-optional regex

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

◆ $_special_dec2str

HTMLPurifier_EntityParser::$_special_dec2str
protected
Initial value:
=
array(
34 => '"',
38 => '&',
39 => "'",
60 => '<',
62 => '>'
)

Decimal to parsed string conversion table for special entities. @type array

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

◆ $_special_ent2dec

HTMLPurifier_EntityParser::$_special_ent2dec
protected
Initial value:
=
array(
'quot' => 34,
'amp' => 38,
'lt' => 60,
'gt' => 62
)

Stripped entity names to decimal conversion table for special entities. @type array

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

◆ $_substituteEntitiesRegex

HTMLPurifier_EntityParser::$_substituteEntitiesRegex
protected
Initial value:
=
'/&(?:[#]x([a-fA-F0-9]+)|[#]0*(\d+)|([A-Za-z_:][A-Za-z0-9.\-_:]*));?/'

Callback regex string for parsing entities. @type string

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

◆ $_textEntitiesRegex

HTMLPurifier_EntityParser::$_textEntitiesRegex
protected

Callback regex string for entities in text. @type string

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


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