PSR-2 reformatting PHPDoc corrections
[htmlpurifier.git] / library / HTMLPurifier / AttrDef / CSS / Composite.php
blob9c1750554f51a9b67ac6bedf4702bf41076bf27f
1 <?php
3 /**
4 * Allows multiple validators to attempt to validate attribute.
6 * Composite is just what it sounds like: a composite of many validators.
7 * This means that multiple HTMLPurifier_AttrDef objects will have a whack
8 * at the string. If one of them passes, that's what is returned. This is
9 * especially useful for CSS values, which often are a choice between
10 * an enumerated set of predefined values or a flexible data type.
12 class HTMLPurifier_AttrDef_CSS_Composite extends HTMLPurifier_AttrDef
15 /**
16 * List of objects that may process strings.
17 * @type HTMLPurifier_AttrDef[]
18 * @todo Make protected
20 public $defs;
22 /**
23 * @param HTMLPurifier_AttrDef[] $defs List of HTMLPurifier_AttrDef objects
25 public function __construct($defs)
27 $this->defs = $defs;
30 /**
31 * @param string $string
32 * @param HTMLPurifier_Config $config
33 * @param HTMLPurifier_Context $context
34 * @return bool|string
36 public function validate($string, $config, $context)
38 foreach ($this->defs as $i => $def) {
39 $result = $this->defs[$i]->validate($string, $config, $context);
40 if ($result !== false) {
41 return $result;
44 return false;
48 // vim: et sw=4 sts=4