| ILIAS
    Release_4_3_x_branch Revision 61807
    | 
Validates a keyword against a list of valid values. More...
 Inheritance diagram for HTMLPurifier_AttrDef_Enum:
 Inheritance diagram for HTMLPurifier_AttrDef_Enum: Collaboration diagram for HTMLPurifier_AttrDef_Enum:
 Collaboration diagram for HTMLPurifier_AttrDef_Enum:| Public Member Functions | |
| __construct ($valid_values=array(), $case_sensitive=false) | |
| validate ($string, $config, $context) | |
| Validates and cleans passed string according to a definition. | |
| make ($string) | |
|  Public Member Functions inherited from HTMLPurifier_AttrDef | |
| parseCDATA ($string) | |
| Convenience method that parses a string as if it were CDATA. | |
| Data Fields | |
| $valid_values = array() | |
| Lookup table of valid values. | |
|  Data Fields inherited from HTMLPurifier_AttrDef | |
| $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 Attributes | |
| $case_sensitive = false | |
| Bool indicating whether or not enumeration is case sensitive. | |
| Additional Inherited Members | |
|  Protected Member Functions inherited from HTMLPurifier_AttrDef | |
| mungeRgb ($string) | |
| Removes spaces from rgb(0, 0, 0) so that shorthand CSS properties work properly. | |
| expandCSSEscape ($string) | |
| Parses a possibly escaped CSS string and returns the "pure" version of it. | |
Validates a keyword against a list of valid values.
| HTMLPurifier_AttrDef_Enum::__construct | ( | $valid_values = array(), | |
| $case_sensitive = false | |||
| ) | 
| $valid_values | List of valid values | 
| $case_sensitive | Bool indicating whether or not case sensitive | 
Definition at line 29 of file Enum.php.
References $case_sensitive, and $valid_values.
| HTMLPurifier_AttrDef_Enum::make | ( | $string | ) | 
| $string | In form of comma-delimited list of case-insensitive valid values. Example: "foo,bar,baz". Prepend "s:" to make case sensitive | 
Reimplemented from HTMLPurifier_AttrDef.
Definition at line 52 of file Enum.php.
| HTMLPurifier_AttrDef_Enum::validate | ( | $string, | |
| $config, | |||
| $context | |||
| ) | 
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. | 
Reimplemented from HTMLPurifier_AttrDef.
Reimplemented in HTMLPurifier_AttrDef_HTML_FrameTarget.
Definition at line 36 of file Enum.php.
References $result.
| 
 | protected | 
Bool indicating whether or not enumeration is case sensitive.
Definition at line 23 of file Enum.php.
Referenced by __construct().
| HTMLPurifier_AttrDef_Enum::$valid_values = array() | 
Lookup table of valid values.
Definition at line 17 of file Enum.php.
Referenced by __construct().