aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/3rdparty/htmlpurifier/HTMLPurifier.kses.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2014-02-21 15:43:14 +0100
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2014-02-21 15:43:14 +0100
commitd4949327efa15b492cab1bef3fe074290a328a17 (patch)
treee89e0322bb1f1b06d663fd10fdded21bac867e5d /inc/3rdparty/htmlpurifier/HTMLPurifier.kses.php
parentc9bd17a1007bb78e5de0775efca01df0fb515031 (diff)
downloadwallabag-d4949327efa15b492cab1bef3fe074290a328a17.tar.gz
wallabag-d4949327efa15b492cab1bef3fe074290a328a17.tar.zst
wallabag-d4949327efa15b492cab1bef3fe074290a328a17.zip
[add] HTML Purifier added to clean code
Diffstat (limited to 'inc/3rdparty/htmlpurifier/HTMLPurifier.kses.php')
-rw-r--r--inc/3rdparty/htmlpurifier/HTMLPurifier.kses.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/inc/3rdparty/htmlpurifier/HTMLPurifier.kses.php b/inc/3rdparty/htmlpurifier/HTMLPurifier.kses.php
new file mode 100644
index 00000000..cf0c322f
--- /dev/null
+++ b/inc/3rdparty/htmlpurifier/HTMLPurifier.kses.php
@@ -0,0 +1,30 @@
1<?php
2
3/**
4 * @file
5 * Emulation layer for code that used kses(), substituting in HTML Purifier.
6 */
7
8require_once dirname(__FILE__) . '/HTMLPurifier.auto.php';
9
10function kses($string, $allowed_html, $allowed_protocols = null)
11{
12 $config = HTMLPurifier_Config::createDefault();
13 $allowed_elements = array();
14 $allowed_attributes = array();
15 foreach ($allowed_html as $element => $attributes) {
16 $allowed_elements[$element] = true;
17 foreach ($attributes as $attribute => $x) {
18 $allowed_attributes["$element.$attribute"] = true;
19 }
20 }
21 $config->set('HTML.AllowedElements', $allowed_elements);
22 $config->set('HTML.AllowedAttributes', $allowed_attributes);
23 if ($allowed_protocols !== null) {
24 $config->set('URI.AllowedSchemes', $allowed_protocols);
25 }
26 $purifier = new HTMLPurifier($config);
27 return $purifier->purify($string);
28}
29
30// vim: et sw=4 sts=4