2006-08-06 01:41:18 +00:00
|
|
|
<?php
|
|
|
|
|
2006-08-20 21:47:15 +00:00
|
|
|
/**
|
|
|
|
* Validates a MultiLength as defined by the HTML spec.
|
|
|
|
*
|
|
|
|
* A multilength is either a integer (pixel count), a percentage, or
|
|
|
|
* a relative number.
|
|
|
|
*/
|
2007-02-14 20:38:51 +00:00
|
|
|
class HTMLPurifier_AttrDef_HTML_MultiLength extends HTMLPurifier_AttrDef_HTML_Length
|
2006-08-06 01:41:18 +00:00
|
|
|
{
|
|
|
|
|
2008-01-05 00:10:43 +00:00
|
|
|
public function validate($string, $config, $context) {
|
2006-08-06 01:41:18 +00:00
|
|
|
|
|
|
|
$string = trim($string);
|
|
|
|
if ($string === '') return false;
|
|
|
|
|
2006-08-12 16:12:16 +00:00
|
|
|
$parent_result = parent::validate($string, $config, $context);
|
2006-08-06 01:41:18 +00:00
|
|
|
if ($parent_result !== false) return $parent_result;
|
|
|
|
|
|
|
|
$length = strlen($string);
|
|
|
|
$last_char = $string[$length - 1];
|
|
|
|
|
|
|
|
if ($last_char !== '*') return false;
|
|
|
|
|
|
|
|
$int = substr($string, 0, $length - 1);
|
|
|
|
|
2007-02-14 20:38:51 +00:00
|
|
|
if ($int == '') return '*';
|
2006-08-06 01:41:18 +00:00
|
|
|
if (!is_numeric($int)) return false;
|
|
|
|
|
|
|
|
$int = (int) $int;
|
|
|
|
|
2007-02-14 20:38:51 +00:00
|
|
|
if ($int < 0) return false;
|
|
|
|
if ($int == 0) return '0';
|
|
|
|
if ($int == 1) return '*';
|
2006-08-06 01:41:18 +00:00
|
|
|
return ((string) $int) . '*';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|