mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-18 05:53:24 +01:00
8f797be836
- can be used via html class like: $clean_html = html::purify($html); - using it now in eTemplate to remove malicious code from html: a) when displaying "formatted text" b) when "formatted text" get's input by the user
29 lines
560 B
PHP
Executable File
29 lines
560 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Validates a boolean attribute
|
|
*/
|
|
class HTMLPurifier_AttrDef_HTML_Bool extends HTMLPurifier_AttrDef
|
|
{
|
|
|
|
protected $name;
|
|
public $minimized = true;
|
|
|
|
public function __construct($name = false) {$this->name = $name;}
|
|
|
|
public function validate($string, $config, $context) {
|
|
if (empty($string)) return false;
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* @param $string Name of attribute
|
|
*/
|
|
public function make($string) {
|
|
return new HTMLPurifier_AttrDef_HTML_Bool($string);
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|