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.
|
2008-12-06 07:28:20 +00:00
|
|
|
*
|
2006-08-20 21:47:15 +00:00
|
|
|
* 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-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
/**
|
|
|
|
* @param string $string
|
|
|
|
* @param HTMLPurifier_Config $config
|
|
|
|
* @param HTMLPurifier_Context $context
|
|
|
|
* @return bool|string
|
|
|
|
*/
|
|
|
|
public function validate($string, $config, $context)
|
|
|
|
{
|
2006-08-06 01:41:18 +00:00
|
|
|
$string = trim($string);
|
2013-07-16 11:56:14 +00:00
|
|
|
if ($string === '') {
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-08-12 16:12:16 +00:00
|
|
|
$parent_result = parent::validate($string, $config, $context);
|
2013-07-16 11:56:14 +00:00
|
|
|
if ($parent_result !== false) {
|
|
|
|
return $parent_result;
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-08-06 01:41:18 +00:00
|
|
|
$length = strlen($string);
|
|
|
|
$last_char = $string[$length - 1];
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
if ($last_char !== '*') {
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-08-06 01:41:18 +00:00
|
|
|
$int = substr($string, 0, $length - 1);
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
if ($int == '') {
|
|
|
|
return '*';
|
|
|
|
}
|
|
|
|
if (!is_numeric($int)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$int = (int)$int;
|
|
|
|
if ($int < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ($int == 0) {
|
|
|
|
return '0';
|
|
|
|
}
|
|
|
|
if ($int == 1) {
|
|
|
|
return '*';
|
|
|
|
}
|
|
|
|
return ((string)$int) . '*';
|
2006-08-06 01:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-06 09:24:59 +00:00
|
|
|
// vim: et sw=4 sts=4
|