PSR-2 reformatting PHPDoc corrections
[htmlpurifier.git] / library / HTMLPurifier / AttrDef / HTML / Length.php
blob1c4006fbbdac3616f4150f09a3ee78cc092e30ff
1 <?php
3 /**
4 * Validates the HTML type length (not to be confused with CSS's length).
6 * This accepts integer pixels or percentages as lengths for certain
7 * HTML attributes.
8 */
10 class HTMLPurifier_AttrDef_HTML_Length extends HTMLPurifier_AttrDef_HTML_Pixels
13 /**
14 * @param string $string
15 * @param HTMLPurifier_Config $config
16 * @param HTMLPurifier_Context $context
17 * @return bool|string
19 public function validate($string, $config, $context)
21 $string = trim($string);
22 if ($string === '') {
23 return false;
26 $parent_result = parent::validate($string, $config, $context);
27 if ($parent_result !== false) {
28 return $parent_result;
31 $length = strlen($string);
32 $last_char = $string[$length - 1];
34 if ($last_char !== '%') {
35 return false;
38 $points = substr($string, 0, $length - 1);
40 if (!is_numeric($points)) {
41 return false;
44 $points = (int)$points;
46 if ($points < 0) {
47 return '0%';
49 if ($points > 100) {
50 return '100%';
52 return ((string)$points) . '%';
56 // vim: et sw=4 sts=4