4 * Dummy AttrDef that mimics another AttrDef, BUT it generates clones
7 class HTMLPurifier_AttrDef_Clone
extends HTMLPurifier_AttrDef
14 public function __construct($clone) {
15 $this->clone = $clone;
18 public function validate($v, $config, $context) {
19 return $this->clone->validate($v, $config, $context);
22 public function make($string) {
23 return clone $this->clone;