Public Member Functions | |
| validate ($string, $config, $context) | |
| Validates and cleans passed string according to a definition. | |
| parseCDATA ($string) | |
| Convenience method that parses a string as if it were CDATA. | |
| make ($string) | |
| Factory method for creating this class from a string. | |
| validate ($string, $config, $context) | |
| Validates and cleans passed string according to a definition. | |
| parseCDATA ($string) | |
| Convenience method that parses a string as if it were CDATA. | |
| make ($string) | |
| Factory method for creating this class from a string. | |
Public Attributes | |
| $minimized = false | |
| Tells us whether or not an HTML attribute is minimized. | |
| $required = false | |
| Tells us whether or not an HTML attribute is required. | |
Protected Member Functions | |
| mungeRgb ($string) | |
| Removes spaces from rgb(0, 0, 0) so that shorthand CSS properties work properly. | |
| mungeRgb ($string) | |
| Removes spaces from rgb(0, 0, 0) so that shorthand CSS properties work properly. | |
This family of classes forms the core for not only HTML attribute validation, but also any sort of string that needs to be validated or cleaned (which means CSS properties and composite definitions are defined here too). Besides defining (through code) what precisely makes the string valid, subclasses are also responsible for cleaning the code if possible.
Definition at line 13 of file AttrDef.php.
| HTMLPurifier_AttrDef-p::validate | ( | $ | string, | |
| $ | config, | |||
| $ | context | |||
| ) | [abstract] |
Validates and cleans passed string according to a definition.
| $string | String to be validated and cleaned. | |
| $config | Mandatory HTMLPurifier_Config object. | |
| $context | Mandatory HTMLPurifier_AttrContext object. |
| HTMLPurifier_AttrDef-p::parseCDATA | ( | $ | string | ) |
Convenience method that parses a string as if it were CDATA.
This method process a string in the manner specified at <http://www.w3.org/TR/html4/types.html#h-6.2> by removing leading and trailing whitespace, ignoring line feeds, and replacing carriage returns and tabs with spaces. While most useful for HTML attributes specified as CDATA, it can also be applied to most CSS values.
Definition at line 58 of file AttrDef.php.
| HTMLPurifier_AttrDef-p::make | ( | $ | string | ) |
Factory method for creating this class from a string.
| $string | String construction info |
Definition at line 69 of file AttrDef.php.
| HTMLPurifier_AttrDef-p::mungeRgb | ( | $ | string | ) | [protected] |
Removes spaces from rgb(0, 0, 0) so that shorthand CSS properties work properly.
THIS IS A HACK!
Definition at line 81 of file AttrDef.php.
| HTMLPurifier_AttrDef-p::validate | ( | $ | string, | |
| $ | config, | |||
| $ | context | |||
| ) | [abstract] |
Validates and cleans passed string according to a definition.
| $string | String to be validated and cleaned. | |
| $config | Mandatory HTMLPurifier_Config object. | |
| $context | Mandatory HTMLPurifier_AttrContext object. |
| HTMLPurifier_AttrDef-p::parseCDATA | ( | $ | string | ) |
Convenience method that parses a string as if it were CDATA.
This method process a string in the manner specified at <http://www.w3.org/TR/html4/types.html#h-6.2> by removing leading and trailing whitespace, ignoring line feeds, and replacing carriage returns and tabs with spaces. While most useful for HTML attributes specified as CDATA, it can also be applied to most CSS values.
Definition at line 441 of file HTMLPurifier.standalone.php.
| HTMLPurifier_AttrDef-p::make | ( | $ | string | ) |
Factory method for creating this class from a string.
| $string | String construction info |
Definition at line 452 of file HTMLPurifier.standalone.php.
| HTMLPurifier_AttrDef-p::mungeRgb | ( | $ | string | ) | [protected] |
Removes spaces from rgb(0, 0, 0) so that shorthand CSS properties work properly.
THIS IS A HACK!
Definition at line 464 of file HTMLPurifier.standalone.php.
| HTMLPurifier_AttrDef-p::$minimized = false |
Tells us whether or not an HTML attribute is minimized.
Has no meaning in other contexts.
Definition at line 20 of file AttrDef.php.
| HTMLPurifier_AttrDef-p::$required = false |
Tells us whether or not an HTML attribute is required.
Has no meaning in other contexts
Definition at line 26 of file AttrDef.php.
1.5.3