PSR-2 reformatting PHPDoc corrections
[htmlpurifier.git] / library / HTMLPurifier / AttrDef / HTML / Nmtokens.php
blobf79683b4fc3660d74390b52973a7cc882aa7b630
1 <?php
3 /**
4 * Validates contents based on NMTOKENS attribute type.
5 */
6 class HTMLPurifier_AttrDef_HTML_Nmtokens extends HTMLPurifier_AttrDef
9 /**
10 * @param string $string
11 * @param HTMLPurifier_Config $config
12 * @param HTMLPurifier_Context $context
13 * @return bool|string
15 public function validate($string, $config, $context)
17 $string = trim($string);
19 // early abort: '' and '0' (strings that convert to false) are invalid
20 if (!$string) {
21 return false;
24 $tokens = $this->split($string, $config, $context);
25 $tokens = $this->filter($tokens, $config, $context);
26 if (empty($tokens)) {
27 return false;
29 return implode(' ', $tokens);
32 /**
33 * Splits a space separated list of tokens into its constituent parts.
34 * @param string $string
35 * @param HTMLPurifier_Config $config
36 * @param HTMLPurifier_Context $context
37 * @return array
39 protected function split($string, $config, $context)
41 // OPTIMIZABLE!
42 // do the preg_match, capture all subpatterns for reformulation
44 // we don't support U+00A1 and up codepoints or
45 // escaping because I don't know how to do that with regexps
46 // and plus it would complicate optimization efforts (you never
47 // see that anyway).
48 $pattern = '/(?:(?<=\s)|\A)' . // look behind for space or string start
49 '((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)' .
50 '(?:(?=\s)|\z)/'; // look ahead for space or string end
51 preg_match_all($pattern, $string, $matches);
52 return $matches[1];
55 /**
56 * Template method for removing certain tokens based on arbitrary criteria.
57 * @note If we wanted to be really functional, we'd do an array_filter
58 * with a callback. But... we're not.
59 * @param array $tokens
60 * @param HTMLPurifier_Config $config
61 * @param HTMLPurifier_Context $context
62 * @return array
64 protected function filter($tokens, $config, $context)
66 return $tokens;
70 // vim: et sw=4 sts=4