12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- class HTMLPurifier_AttrDef_HTML_Bool extends HTMLPurifier_AttrDef
- {
-
- protected $name;
-
- public $minimized = true;
-
- public function __construct($name = false)
- {
- $this->name = $name;
- }
-
- public function validate($string, $config, $context)
- {
- return $this->name;
- }
-
- public function make($string)
- {
- return new HTMLPurifier_AttrDef_HTML_Bool($string);
- }
- }
|