PluginProbe
Independent Analytics – WordPress Analytics Plugin / 1.5
Independent Analytics – WordPress Analytics Plugin v1.5
2.15.5 2.15.4 2.15.3 2.15.2 2.15.1 2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 All 120 releases
independent-analytics / inc / utils / security.php
security.php
59 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace IAWP;
4
5 class Security
6 {
7 public static function json_encode($object)
8 {
9 return json_encode($object, JSON_HEX_QUOT | JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS);
10 }
11
12 public static function string($string)
13 {
14 return sanitize_text_field($string);
15 }
16
17 public static function hex($hex)
18 {
19 return sanitize_hex_color($hex);
20 }
21
22 public static function html($html)
23 {
24 return wp_kses_post($html);
25 }
26
27 public static function form($html)
28 {
29 return wp_kses($html, [
30 'div' => [
31 'class' => [],
32 ],
33 'select' => [
34 'class' => [],
35 ],
36 'option' => [
37 'class' => [],
38 'value' => [],
39 'data-datatype' => [],
40 ],
41 'input' => [
42 'class' => [],
43 'type' => [],
44 'data-css' => [],
45 'data-dow' => [],
46 'data-format' => [],
47 'readonly',
48 ],
49 'button' => [
50 'class' => [],
51 ],
52 'span' => [
53 'class' => [],
54 'style' => [],
55 ],
56 ]);
57 }
58 }
59