Add vim modelines to all files.
[htmlpurifier.git] / library / HTMLPurifier / AttrDef / CSS / Multiple.php
blob4d62a40d7fc6a6abb3a834e3f80139deb39a8ada
1 <?php
3 /**
4 * Framework class for strings that involve multiple values.
6 * Certain CSS properties such as border-width and margin allow multiple
7 * lengths to be specified. This class can take a vanilla border-width
8 * definition and multiply it, usually into a max of four.
10 * @note Even though the CSS specification isn't clear about it, inherit
11 * can only be used alone: it will never manifest as part of a multi
12 * shorthand declaration. Thus, this class does not allow inherit.
14 class HTMLPurifier_AttrDef_CSS_Multiple extends HTMLPurifier_AttrDef
17 /**
18 * Instance of component definition to defer validation to.
19 * @todo Make protected
21 public $single;
23 /**
24 * Max number of values allowed.
25 * @todo Make protected
27 public $max;
29 /**
30 * @param $single HTMLPurifier_AttrDef to multiply
31 * @param $max Max number of values allowed (usually four)
33 public function __construct($single, $max = 4) {
34 $this->single = $single;
35 $this->max = $max;
38 public function validate($string, $config, $context) {
39 $string = $this->parseCDATA($string);
40 if ($string === '') return false;
41 $parts = explode(' ', $string); // parseCDATA replaced \r, \t and \n
42 $length = count($parts);
43 $final = '';
44 for ($i = 0, $num = 0; $i < $length && $num < $this->max; $i++) {
45 if (ctype_space($parts[$i])) continue;
46 $result = $this->single->validate($parts[$i], $config, $context);
47 if ($result !== false) {
48 $final .= $result . ' ';
49 $num++;
52 if ($final === '') return false;
53 return rtrim($final);
58 // vim: et sw=4 sts=4