ILIAS  release_4-4 Revision
HTMLPurifier_AttrDef_Enum Class Reference

Validates a keyword against a list of valid values. More...

+ Inheritance 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)
 
 make ($string)
 
- Public Member Functions inherited from HTMLPurifier_AttrDef
 validate ($string, $config, $context)
 Validates and cleans passed string according to a definition. More...
 
 parseCDATA ($string)
 Convenience method that parses a string as if it were CDATA. More...
 
 make ($string)
 Factory method for creating this class from a string. More...
 

Data Fields

 $valid_values = array()
 Lookup table of valid values. More...
 
- Data Fields inherited from HTMLPurifier_AttrDef
 $minimized = false
 Tells us whether or not an HTML attribute is minimized. More...
 
 $required = false
 Tells us whether or not an HTML attribute is required. More...
 

Protected Attributes

 $case_sensitive = false
 Bool indicating whether or not enumeration is case sensitive. More...
 

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. More...
 
 expandCSSEscape ($string)
 Parses a possibly escaped CSS string and returns the "pure" version of it. More...
 

Detailed Description

Validates a keyword against a list of valid values.

Warning
The case-insensitive compare of this function uses PHP's built-in strtolower and ctype_lower functions, which may cause problems with international comparisons

Definition at line 10 of file Enum.php.

Constructor & Destructor Documentation

◆ __construct()

HTMLPurifier_AttrDef_Enum::__construct (   $valid_values = array(),
  $case_sensitive = false 
)
Parameters
$valid_valuesList of valid values
$case_sensitiveBool indicating whether or not case sensitive

Definition at line 29 of file Enum.php.

References $case_sensitive, and $valid_values.

31  {
32  $this->valid_values = array_flip($valid_values);
33  $this->case_sensitive = $case_sensitive;
34  }
$case_sensitive
Bool indicating whether or not enumeration is case sensitive.
Definition: Enum.php:23
$valid_values
Lookup table of valid values.
Definition: Enum.php:17

Member Function Documentation

◆ make()

HTMLPurifier_AttrDef_Enum::make (   $string)
Parameters
$stringIn form of comma-delimited list of case-insensitive valid values. Example: "foo,bar,baz". Prepend "s:" to make case sensitive

Definition at line 52 of file Enum.php.

52  {
53  if (strlen($string) > 2 && $string[0] == 's' && $string[1] == ':') {
54  $string = substr($string, 2);
55  $sensitive = true;
56  } else {
57  $sensitive = false;
58  }
59  $values = explode(',', $string);
60  return new HTMLPurifier_AttrDef_Enum($values, $sensitive);
61  }
Validates a keyword against a list of valid values.
Definition: Enum.php:10

◆ validate()

HTMLPurifier_AttrDef_Enum::validate (   $string,
  $config,
  $context 
)

Definition at line 36 of file Enum.php.

References $result.

36  {
37  $string = trim($string);
38  if (!$this->case_sensitive) {
39  // we may want to do full case-insensitive libraries
40  $string = ctype_lower($string) ? $string : strtolower($string);
41  }
42  $result = isset($this->valid_values[$string]);
43 
44  return $result ? $string : false;
45  }
$result

Field Documentation

◆ $case_sensitive

HTMLPurifier_AttrDef_Enum::$case_sensitive = false
protected

Bool indicating whether or not enumeration is case sensitive.

Note
In general this is always case insensitive.

Definition at line 23 of file Enum.php.

Referenced by __construct().

◆ $valid_values

HTMLPurifier_AttrDef_Enum::$valid_values = array()

Lookup table of valid values.

Todo:
Make protected

Definition at line 17 of file Enum.php.

Referenced by __construct().


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