mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 08:49:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10579 201d5d3c-b55e-5fd7-737f-ddc643e51545
24 lines
517 B
PHP
24 lines
517 B
PHP
<?php
|
|
|
|
/**
|
|
* Validates based on {ident} CSS grammar production
|
|
*/
|
|
class HTMLPurifier_AttrDef_CSS_Ident extends HTMLPurifier_AttrDef
|
|
{
|
|
|
|
public function validate($string, $config, $context) {
|
|
|
|
$string = trim($string);
|
|
|
|
// early abort: '' and '0' (strings that convert to false) are invalid
|
|
if (!$string) return false;
|
|
|
|
$pattern = '/^(-?[A-Za-z_][A-Za-z_\-0-9]*)$/';
|
|
if (!preg_match($pattern, $string)) return false;
|
|
return $string;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|