@@ -33,17 +33,17 @@ |
||
33 | 33 | */ |
34 | 34 | class PluginWordwrap extends Plugin implements ICompilable |
35 | 35 | { |
36 | - /** |
|
37 | - * @param Compiler $compiler |
|
38 | - * @param string $value |
|
39 | - * @param int $length |
|
40 | - * @param string $break |
|
41 | - * @param bool $cut |
|
42 | - * |
|
43 | - * @return string |
|
44 | - */ |
|
45 | - public static function compile(Compiler $compiler, $value, $length = 80, $break = "\n", $cut = false) |
|
46 | - { |
|
47 | - return 'wordwrap(' . $value . ',' . $length . ',' . $break . ',' . $cut . ')'; |
|
48 | - } |
|
36 | + /** |
|
37 | + * @param Compiler $compiler |
|
38 | + * @param string $value |
|
39 | + * @param int $length |
|
40 | + * @param string $break |
|
41 | + * @param bool $cut |
|
42 | + * |
|
43 | + * @return string |
|
44 | + */ |
|
45 | + public static function compile(Compiler $compiler, $value, $length = 80, $break = "\n", $cut = false) |
|
46 | + { |
|
47 | + return 'wordwrap(' . $value . ',' . $length . ',' . $break . ',' . $cut . ')'; |
|
48 | + } |
|
49 | 49 | } |
50 | 50 | \ No newline at end of file |
@@ -44,6 +44,6 @@ |
||
44 | 44 | */ |
45 | 45 | public static function compile(Compiler $compiler, $value, $length = 80, $break = "\n", $cut = false) |
46 | 46 | { |
47 | - return 'wordwrap(' . $value . ',' . $length . ',' . $break . ',' . $cut . ')'; |
|
47 | + return 'wordwrap('.$value.','.$length.','.$break.','.$cut.')'; |
|
48 | 48 | } |
49 | 49 | } |
50 | 50 | \ No newline at end of file |
@@ -32,21 +32,21 @@ |
||
32 | 32 | */ |
33 | 33 | class PluginReplace extends Plugin implements ICompilable |
34 | 34 | { |
35 | - /** |
|
36 | - * @param Compiler $compiler |
|
37 | - * @param string $value |
|
38 | - * @param string $search |
|
39 | - * @param string $replace |
|
40 | - * @param bool $case_sensitive |
|
41 | - * |
|
42 | - * @return string |
|
43 | - */ |
|
44 | - public static function compile(Compiler $compiler, $value, $search, $replace, $case_sensitive = true) |
|
45 | - { |
|
46 | - if ($case_sensitive == 'false' || (bool)$case_sensitive === false) { |
|
47 | - return 'str_ireplace(' . $search . ', ' . $replace . ', ' . $value . ')'; |
|
48 | - } else { |
|
49 | - return 'str_replace(' . $search . ', ' . $replace . ', ' . $value . ')'; |
|
50 | - } |
|
51 | - } |
|
35 | + /** |
|
36 | + * @param Compiler $compiler |
|
37 | + * @param string $value |
|
38 | + * @param string $search |
|
39 | + * @param string $replace |
|
40 | + * @param bool $case_sensitive |
|
41 | + * |
|
42 | + * @return string |
|
43 | + */ |
|
44 | + public static function compile(Compiler $compiler, $value, $search, $replace, $case_sensitive = true) |
|
45 | + { |
|
46 | + if ($case_sensitive == 'false' || (bool)$case_sensitive === false) { |
|
47 | + return 'str_ireplace(' . $search . ', ' . $replace . ', ' . $value . ')'; |
|
48 | + } else { |
|
49 | + return 'str_replace(' . $search . ', ' . $replace . ', ' . $value . ')'; |
|
50 | + } |
|
51 | + } |
|
52 | 52 | } |
53 | 53 | \ No newline at end of file |
@@ -43,10 +43,10 @@ |
||
43 | 43 | */ |
44 | 44 | public static function compile(Compiler $compiler, $value, $search, $replace, $case_sensitive = true) |
45 | 45 | { |
46 | - if ($case_sensitive == 'false' || (bool)$case_sensitive === false) { |
|
47 | - return 'str_ireplace(' . $search . ', ' . $replace . ', ' . $value . ')'; |
|
46 | + if ($case_sensitive == 'false' || (bool) $case_sensitive === false) { |
|
47 | + return 'str_ireplace('.$search.', '.$replace.', '.$value.')'; |
|
48 | 48 | } else { |
49 | - return 'str_replace(' . $search . ', ' . $replace . ', ' . $value . ')'; |
|
49 | + return 'str_replace('.$search.', '.$replace.', '.$value.')'; |
|
50 | 50 | } |
51 | 51 | } |
52 | 52 | } |
53 | 53 | \ No newline at end of file |
@@ -30,34 +30,34 @@ |
||
30 | 30 | */ |
31 | 31 | class PluginRegexReplace extends Plugin |
32 | 32 | { |
33 | - /** |
|
34 | - * @param string $value |
|
35 | - * @param string $search |
|
36 | - * @param string $replace |
|
37 | - * |
|
38 | - * @return mixed |
|
39 | - */ |
|
40 | - public function process($value, $search, $replace) |
|
41 | - { |
|
42 | - $search = (array)$search; |
|
43 | - $cnt = count($search); |
|
33 | + /** |
|
34 | + * @param string $value |
|
35 | + * @param string $search |
|
36 | + * @param string $replace |
|
37 | + * |
|
38 | + * @return mixed |
|
39 | + */ |
|
40 | + public function process($value, $search, $replace) |
|
41 | + { |
|
42 | + $search = (array)$search; |
|
43 | + $cnt = count($search); |
|
44 | 44 | |
45 | - for ($i = 0; $i < $cnt; ++ $i) { |
|
46 | - // Credits for this to Monte Ohrt who made smarty's regex_replace modifier |
|
47 | - if (($pos = strpos($search[$i], "\0")) !== false) { |
|
48 | - $search[$i] = substr($search[$i], 0, $pos); |
|
49 | - } |
|
45 | + for ($i = 0; $i < $cnt; ++ $i) { |
|
46 | + // Credits for this to Monte Ohrt who made smarty's regex_replace modifier |
|
47 | + if (($pos = strpos($search[$i], "\0")) !== false) { |
|
48 | + $search[$i] = substr($search[$i], 0, $pos); |
|
49 | + } |
|
50 | 50 | |
51 | - if (preg_match('#[a-z\s]+$#is', $search[$i], $m) && (strpos($m[0], 'e') !== false)) { |
|
52 | - $search[$i] = substr($search[$i], 0, - strlen($m[0])) . str_replace(array( |
|
53 | - 'e', |
|
54 | - ' ' |
|
55 | - ), |
|
56 | - '', |
|
57 | - $m[0]); |
|
58 | - } |
|
59 | - } |
|
51 | + if (preg_match('#[a-z\s]+$#is', $search[$i], $m) && (strpos($m[0], 'e') !== false)) { |
|
52 | + $search[$i] = substr($search[$i], 0, - strlen($m[0])) . str_replace(array( |
|
53 | + 'e', |
|
54 | + ' ' |
|
55 | + ), |
|
56 | + '', |
|
57 | + $m[0]); |
|
58 | + } |
|
59 | + } |
|
60 | 60 | |
61 | - return preg_replace($search, $replace, $value); |
|
62 | - } |
|
61 | + return preg_replace($search, $replace, $value); |
|
62 | + } |
|
63 | 63 | } |
64 | 64 | \ No newline at end of file |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function process($value, $search, $replace) |
41 | 41 | { |
42 | - $search = (array)$search; |
|
42 | + $search = (array) $search; |
|
43 | 43 | $cnt = count($search); |
44 | 44 | |
45 | 45 | for ($i = 0; $i < $cnt; ++ $i) { |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | } |
50 | 50 | |
51 | 51 | if (preg_match('#[a-z\s]+$#is', $search[$i], $m) && (strpos($m[0], 'e') !== false)) { |
52 | - $search[$i] = substr($search[$i], 0, - strlen($m[0])) . str_replace(array( |
|
52 | + $search[$i] = substr($search[$i], 0, - strlen($m[0])).str_replace(array( |
|
53 | 53 | 'e', |
54 | 54 | ' ' |
55 | 55 | ), |
@@ -31,15 +31,15 @@ |
||
31 | 31 | */ |
32 | 32 | class PluginStringFormat extends Plugin implements ICompilable |
33 | 33 | { |
34 | - /** |
|
35 | - * @param Compiler $compiler |
|
36 | - * @param string $value |
|
37 | - * @param string $format |
|
38 | - * |
|
39 | - * @return string |
|
40 | - */ |
|
41 | - public static function compile(Compiler $compiler, $value, $format) |
|
42 | - { |
|
43 | - return 'sprintf(' . $format . ',' . $value . ')'; |
|
44 | - } |
|
34 | + /** |
|
35 | + * @param Compiler $compiler |
|
36 | + * @param string $value |
|
37 | + * @param string $format |
|
38 | + * |
|
39 | + * @return string |
|
40 | + */ |
|
41 | + public static function compile(Compiler $compiler, $value, $format) |
|
42 | + { |
|
43 | + return 'sprintf(' . $format . ',' . $value . ')'; |
|
44 | + } |
|
45 | 45 | } |
46 | 46 | \ No newline at end of file |
@@ -40,6 +40,6 @@ |
||
40 | 40 | */ |
41 | 41 | public static function compile(Compiler $compiler, $value, $format) |
42 | 42 | { |
43 | - return 'sprintf(' . $format . ',' . $value . ')'; |
|
43 | + return 'sprintf('.$format.','.$value.')'; |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 | \ No newline at end of file |
@@ -27,13 +27,13 @@ |
||
27 | 27 | */ |
28 | 28 | class PluginEol extends Plugin implements ICompilable |
29 | 29 | { |
30 | - /** |
|
31 | - * @param Compiler $compiler |
|
32 | - * |
|
33 | - * @return string |
|
34 | - */ |
|
35 | - public static function compile(Compiler $compiler) |
|
36 | - { |
|
37 | - return 'PHP_EOL'; |
|
38 | - } |
|
30 | + /** |
|
31 | + * @param Compiler $compiler |
|
32 | + * |
|
33 | + * @return string |
|
34 | + */ |
|
35 | + public static function compile(Compiler $compiler) |
|
36 | + { |
|
37 | + return 'PHP_EOL'; |
|
38 | + } |
|
39 | 39 | } |
@@ -30,14 +30,14 @@ |
||
30 | 30 | */ |
31 | 31 | class PluginCountParagraphs extends Plugin implements ICompilable |
32 | 32 | { |
33 | - /** |
|
34 | - * @param Compiler $compiler |
|
35 | - * @param string $value |
|
36 | - * |
|
37 | - * @return string |
|
38 | - */ |
|
39 | - public static function compile(Compiler $compiler, $value) |
|
40 | - { |
|
41 | - return '(preg_match_all(\'#[\r\n]+#\', ' . $value . ', $tmp)+1)'; |
|
42 | - } |
|
33 | + /** |
|
34 | + * @param Compiler $compiler |
|
35 | + * @param string $value |
|
36 | + * |
|
37 | + * @return string |
|
38 | + */ |
|
39 | + public static function compile(Compiler $compiler, $value) |
|
40 | + { |
|
41 | + return '(preg_match_all(\'#[\r\n]+#\', ' . $value . ', $tmp)+1)'; |
|
42 | + } |
|
43 | 43 | } |
44 | 44 | \ No newline at end of file |
@@ -38,6 +38,6 @@ |
||
38 | 38 | */ |
39 | 39 | public static function compile(Compiler $compiler, $value) |
40 | 40 | { |
41 | - return '(preg_match_all(\'#[\r\n]+#\', ' . $value . ', $tmp)+1)'; |
|
41 | + return '(preg_match_all(\'#[\r\n]+#\', '.$value.', $tmp)+1)'; |
|
42 | 42 | } |
43 | 43 | } |
44 | 44 | \ No newline at end of file |
@@ -34,70 +34,70 @@ |
||
34 | 34 | */ |
35 | 35 | class PluginEscape extends Plugin |
36 | 36 | { |
37 | - /** |
|
38 | - * @param string $value |
|
39 | - * @param string $format |
|
40 | - * @param null $charset |
|
41 | - * |
|
42 | - * @return mixed|string |
|
43 | - */ |
|
44 | - public function process($value = '', $format = 'html', $charset = null) |
|
45 | - { |
|
46 | - if ($charset === null) { |
|
47 | - $charset = $this->core->getCharset(); |
|
48 | - } |
|
37 | + /** |
|
38 | + * @param string $value |
|
39 | + * @param string $format |
|
40 | + * @param null $charset |
|
41 | + * |
|
42 | + * @return mixed|string |
|
43 | + */ |
|
44 | + public function process($value = '', $format = 'html', $charset = null) |
|
45 | + { |
|
46 | + if ($charset === null) { |
|
47 | + $charset = $this->core->getCharset(); |
|
48 | + } |
|
49 | 49 | |
50 | - switch ($format) { |
|
51 | - case 'html': |
|
52 | - return htmlspecialchars((string)$value, ENT_QUOTES, $charset); |
|
53 | - case 'htmlall': |
|
54 | - return htmlentities((string)$value, ENT_QUOTES, $charset); |
|
55 | - case 'url': |
|
56 | - return rawurlencode((string)$value); |
|
57 | - case 'urlpathinfo': |
|
58 | - return str_replace('%2F', '/', rawurlencode((string)$value)); |
|
59 | - case 'quotes': |
|
60 | - return preg_replace("#(?<!\\\\)'#", "\\'", (string)$value); |
|
61 | - case 'hex': |
|
62 | - $out = ''; |
|
63 | - $cnt = strlen((string)$value); |
|
64 | - for ($i = 0; $i < $cnt; ++ $i) { |
|
65 | - $out .= '%' . bin2hex((string)$value[$i]); |
|
66 | - } |
|
50 | + switch ($format) { |
|
51 | + case 'html': |
|
52 | + return htmlspecialchars((string)$value, ENT_QUOTES, $charset); |
|
53 | + case 'htmlall': |
|
54 | + return htmlentities((string)$value, ENT_QUOTES, $charset); |
|
55 | + case 'url': |
|
56 | + return rawurlencode((string)$value); |
|
57 | + case 'urlpathinfo': |
|
58 | + return str_replace('%2F', '/', rawurlencode((string)$value)); |
|
59 | + case 'quotes': |
|
60 | + return preg_replace("#(?<!\\\\)'#", "\\'", (string)$value); |
|
61 | + case 'hex': |
|
62 | + $out = ''; |
|
63 | + $cnt = strlen((string)$value); |
|
64 | + for ($i = 0; $i < $cnt; ++ $i) { |
|
65 | + $out .= '%' . bin2hex((string)$value[$i]); |
|
66 | + } |
|
67 | 67 | |
68 | - return $out; |
|
69 | - case 'hexentity': |
|
70 | - $out = ''; |
|
71 | - $cnt = strlen((string)$value); |
|
72 | - for ($i = 0; $i < $cnt; ++ $i) { |
|
73 | - $out .= '&#x' . bin2hex((string)$value[$i]) . ';'; |
|
74 | - } |
|
68 | + return $out; |
|
69 | + case 'hexentity': |
|
70 | + $out = ''; |
|
71 | + $cnt = strlen((string)$value); |
|
72 | + for ($i = 0; $i < $cnt; ++ $i) { |
|
73 | + $out .= '&#x' . bin2hex((string)$value[$i]) . ';'; |
|
74 | + } |
|
75 | 75 | |
76 | - return $out; |
|
77 | - case 'javascript': |
|
78 | - case 'js': |
|
79 | - return strtr((string)$value, |
|
80 | - array( |
|
81 | - '\\' => '\\\\', |
|
82 | - "'" => "\\'", |
|
83 | - '"' => '\\"', |
|
84 | - "\r" => '\\r', |
|
85 | - "\n" => '\\n', |
|
86 | - '</' => '<\/' |
|
87 | - )); |
|
88 | - case 'mail': |
|
89 | - return str_replace(array( |
|
90 | - '@', |
|
91 | - '.' |
|
92 | - ), |
|
93 | - array( |
|
94 | - ' (AT) ', |
|
95 | - ' (DOT) ' |
|
96 | - ), |
|
97 | - (string)$value); |
|
98 | - default: |
|
99 | - $this->core->triggerError('Escape\'s format argument must be one of : html, htmlall, url, urlpathinfo, hex, hexentity, javascript, js or mail, "' . $format . '" given.', |
|
100 | - E_USER_WARNING); |
|
101 | - } |
|
102 | - } |
|
76 | + return $out; |
|
77 | + case 'javascript': |
|
78 | + case 'js': |
|
79 | + return strtr((string)$value, |
|
80 | + array( |
|
81 | + '\\' => '\\\\', |
|
82 | + "'" => "\\'", |
|
83 | + '"' => '\\"', |
|
84 | + "\r" => '\\r', |
|
85 | + "\n" => '\\n', |
|
86 | + '</' => '<\/' |
|
87 | + )); |
|
88 | + case 'mail': |
|
89 | + return str_replace(array( |
|
90 | + '@', |
|
91 | + '.' |
|
92 | + ), |
|
93 | + array( |
|
94 | + ' (AT) ', |
|
95 | + ' (DOT) ' |
|
96 | + ), |
|
97 | + (string)$value); |
|
98 | + default: |
|
99 | + $this->core->triggerError('Escape\'s format argument must be one of : html, htmlall, url, urlpathinfo, hex, hexentity, javascript, js or mail, "' . $format . '" given.', |
|
100 | + E_USER_WARNING); |
|
101 | + } |
|
102 | + } |
|
103 | 103 | } |
104 | 104 | \ No newline at end of file |
@@ -48,56 +48,56 @@ |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | switch ($format) { |
51 | - case 'html': |
|
52 | - return htmlspecialchars((string)$value, ENT_QUOTES, $charset); |
|
53 | - case 'htmlall': |
|
54 | - return htmlentities((string)$value, ENT_QUOTES, $charset); |
|
55 | - case 'url': |
|
56 | - return rawurlencode((string)$value); |
|
57 | - case 'urlpathinfo': |
|
58 | - return str_replace('%2F', '/', rawurlencode((string)$value)); |
|
59 | - case 'quotes': |
|
60 | - return preg_replace("#(?<!\\\\)'#", "\\'", (string)$value); |
|
61 | - case 'hex': |
|
62 | - $out = ''; |
|
63 | - $cnt = strlen((string)$value); |
|
64 | - for ($i = 0; $i < $cnt; ++ $i) { |
|
65 | - $out .= '%' . bin2hex((string)$value[$i]); |
|
66 | - } |
|
51 | + case 'html': |
|
52 | + return htmlspecialchars((string)$value, ENT_QUOTES, $charset); |
|
53 | + case 'htmlall': |
|
54 | + return htmlentities((string)$value, ENT_QUOTES, $charset); |
|
55 | + case 'url': |
|
56 | + return rawurlencode((string)$value); |
|
57 | + case 'urlpathinfo': |
|
58 | + return str_replace('%2F', '/', rawurlencode((string)$value)); |
|
59 | + case 'quotes': |
|
60 | + return preg_replace("#(?<!\\\\)'#", "\\'", (string)$value); |
|
61 | + case 'hex': |
|
62 | + $out = ''; |
|
63 | + $cnt = strlen((string)$value); |
|
64 | + for ($i = 0; $i < $cnt; ++ $i) { |
|
65 | + $out .= '%' . bin2hex((string)$value[$i]); |
|
66 | + } |
|
67 | 67 | |
68 | - return $out; |
|
69 | - case 'hexentity': |
|
70 | - $out = ''; |
|
71 | - $cnt = strlen((string)$value); |
|
72 | - for ($i = 0; $i < $cnt; ++ $i) { |
|
73 | - $out .= '&#x' . bin2hex((string)$value[$i]) . ';'; |
|
74 | - } |
|
68 | + return $out; |
|
69 | + case 'hexentity': |
|
70 | + $out = ''; |
|
71 | + $cnt = strlen((string)$value); |
|
72 | + for ($i = 0; $i < $cnt; ++ $i) { |
|
73 | + $out .= '&#x' . bin2hex((string)$value[$i]) . ';'; |
|
74 | + } |
|
75 | 75 | |
76 | - return $out; |
|
77 | - case 'javascript': |
|
78 | - case 'js': |
|
79 | - return strtr((string)$value, |
|
80 | - array( |
|
81 | - '\\' => '\\\\', |
|
82 | - "'" => "\\'", |
|
83 | - '"' => '\\"', |
|
84 | - "\r" => '\\r', |
|
85 | - "\n" => '\\n', |
|
86 | - '</' => '<\/' |
|
87 | - )); |
|
88 | - case 'mail': |
|
89 | - return str_replace(array( |
|
90 | - '@', |
|
91 | - '.' |
|
76 | + return $out; |
|
77 | + case 'javascript': |
|
78 | + case 'js': |
|
79 | + return strtr((string)$value, |
|
80 | + array( |
|
81 | + '\\' => '\\\\', |
|
82 | + "'" => "\\'", |
|
83 | + '"' => '\\"', |
|
84 | + "\r" => '\\r', |
|
85 | + "\n" => '\\n', |
|
86 | + '</' => '<\/' |
|
87 | + )); |
|
88 | + case 'mail': |
|
89 | + return str_replace(array( |
|
90 | + '@', |
|
91 | + '.' |
|
92 | + ), |
|
93 | + array( |
|
94 | + ' (AT) ', |
|
95 | + ' (DOT) ' |
|
92 | 96 | ), |
93 | - array( |
|
94 | - ' (AT) ', |
|
95 | - ' (DOT) ' |
|
96 | - ), |
|
97 | - (string)$value); |
|
98 | - default: |
|
99 | - $this->core->triggerError('Escape\'s format argument must be one of : html, htmlall, url, urlpathinfo, hex, hexentity, javascript, js or mail, "' . $format . '" given.', |
|
100 | - E_USER_WARNING); |
|
97 | + (string)$value); |
|
98 | + default: |
|
99 | + $this->core->triggerError('Escape\'s format argument must be one of : html, htmlall, url, urlpathinfo, hex, hexentity, javascript, js or mail, "' . $format . '" given.', |
|
100 | + E_USER_WARNING); |
|
101 | 101 | } |
102 | 102 | } |
103 | 103 | } |
104 | 104 | \ No newline at end of file |
@@ -49,34 +49,34 @@ discard block |
||
49 | 49 | |
50 | 50 | switch ($format) { |
51 | 51 | case 'html': |
52 | - return htmlspecialchars((string)$value, ENT_QUOTES, $charset); |
|
52 | + return htmlspecialchars((string) $value, ENT_QUOTES, $charset); |
|
53 | 53 | case 'htmlall': |
54 | - return htmlentities((string)$value, ENT_QUOTES, $charset); |
|
54 | + return htmlentities((string) $value, ENT_QUOTES, $charset); |
|
55 | 55 | case 'url': |
56 | - return rawurlencode((string)$value); |
|
56 | + return rawurlencode((string) $value); |
|
57 | 57 | case 'urlpathinfo': |
58 | - return str_replace('%2F', '/', rawurlencode((string)$value)); |
|
58 | + return str_replace('%2F', '/', rawurlencode((string) $value)); |
|
59 | 59 | case 'quotes': |
60 | - return preg_replace("#(?<!\\\\)'#", "\\'", (string)$value); |
|
60 | + return preg_replace("#(?<!\\\\)'#", "\\'", (string) $value); |
|
61 | 61 | case 'hex': |
62 | 62 | $out = ''; |
63 | - $cnt = strlen((string)$value); |
|
63 | + $cnt = strlen((string) $value); |
|
64 | 64 | for ($i = 0; $i < $cnt; ++ $i) { |
65 | - $out .= '%' . bin2hex((string)$value[$i]); |
|
65 | + $out .= '%'.bin2hex((string) $value[$i]); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | return $out; |
69 | 69 | case 'hexentity': |
70 | 70 | $out = ''; |
71 | - $cnt = strlen((string)$value); |
|
71 | + $cnt = strlen((string) $value); |
|
72 | 72 | for ($i = 0; $i < $cnt; ++ $i) { |
73 | - $out .= '&#x' . bin2hex((string)$value[$i]) . ';'; |
|
73 | + $out .= '&#x'.bin2hex((string) $value[$i]).';'; |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | return $out; |
77 | 77 | case 'javascript': |
78 | 78 | case 'js': |
79 | - return strtr((string)$value, |
|
79 | + return strtr((string) $value, |
|
80 | 80 | array( |
81 | 81 | '\\' => '\\\\', |
82 | 82 | "'" => "\\'", |
@@ -94,9 +94,9 @@ discard block |
||
94 | 94 | ' (AT) ', |
95 | 95 | ' (DOT) ' |
96 | 96 | ), |
97 | - (string)$value); |
|
97 | + (string) $value); |
|
98 | 98 | default: |
99 | - $this->core->triggerError('Escape\'s format argument must be one of : html, htmlall, url, urlpathinfo, hex, hexentity, javascript, js or mail, "' . $format . '" given.', |
|
99 | + $this->core->triggerError('Escape\'s format argument must be one of : html, htmlall, url, urlpathinfo, hex, hexentity, javascript, js or mail, "'.$format.'" given.', |
|
100 | 100 | E_USER_WARNING); |
101 | 101 | } |
102 | 102 | } |
@@ -31,16 +31,16 @@ |
||
31 | 31 | class PluginSafe extends Plugin implements ICompilable |
32 | 32 | { |
33 | 33 | |
34 | - /** |
|
35 | - * @param Compiler $compiler |
|
36 | - * @param mixed $var |
|
37 | - * |
|
38 | - * @return mixed |
|
39 | - */ |
|
40 | - public static function compile(Compiler $compiler, $var) |
|
41 | - { |
|
42 | - return preg_replace('#\(is_string\(\$tmp=(.+)\) \? htmlspecialchars\(\$tmp, ENT_QUOTES, \$this->charset\) : \$tmp\)#', |
|
43 | - '$1', |
|
44 | - $var); |
|
45 | - } |
|
34 | + /** |
|
35 | + * @param Compiler $compiler |
|
36 | + * @param mixed $var |
|
37 | + * |
|
38 | + * @return mixed |
|
39 | + */ |
|
40 | + public static function compile(Compiler $compiler, $var) |
|
41 | + { |
|
42 | + return preg_replace('#\(is_string\(\$tmp=(.+)\) \? htmlspecialchars\(\$tmp, ENT_QUOTES, \$this->charset\) : \$tmp\)#', |
|
43 | + '$1', |
|
44 | + $var); |
|
45 | + } |
|
46 | 46 | } |
47 | 47 | \ No newline at end of file |
@@ -36,109 +36,109 @@ |
||
36 | 36 | */ |
37 | 37 | class PluginMailto extends Plugin |
38 | 38 | { |
39 | - /** |
|
40 | - * @param $address |
|
41 | - * @param null $text |
|
42 | - * @param null $subject |
|
43 | - * @param null $encode |
|
44 | - * @param null $cc |
|
45 | - * @param null $bcc |
|
46 | - * @param null $newsgroups |
|
47 | - * @param null $followupto |
|
48 | - * @param null $extra |
|
49 | - * |
|
50 | - * @return string |
|
51 | - */ |
|
52 | - public function process($address, $text = null, $subject = null, $encode = null, $cc = null, $bcc = null, $newsgroups = null, $followupto = null, $extra = null) |
|
53 | - { |
|
54 | - if (empty($address)) { |
|
55 | - return ''; |
|
56 | - } |
|
57 | - if (empty($text)) { |
|
58 | - $text = $address; |
|
59 | - } |
|
60 | - |
|
61 | - // build address string |
|
62 | - $address .= '?'; |
|
63 | - |
|
64 | - if (!empty($subject)) { |
|
65 | - $address .= 'subject=' . rawurlencode($subject) . '&'; |
|
66 | - } |
|
67 | - if (!empty($cc)) { |
|
68 | - $address .= 'cc=' . rawurlencode($cc) . '&'; |
|
69 | - } |
|
70 | - if (!empty($bcc)) { |
|
71 | - $address .= 'bcc=' . rawurlencode($bcc) . '&'; |
|
72 | - } |
|
73 | - if (!empty($newsgroups)) { |
|
74 | - $address .= 'newsgroups=' . rawurlencode($newsgroups) . '&'; |
|
75 | - } |
|
76 | - if (!empty($followupto)) { |
|
77 | - $address .= 'followupto=' . rawurlencode($followupto) . '&'; |
|
78 | - } |
|
79 | - |
|
80 | - $address = rtrim($address, '?&'); |
|
81 | - |
|
82 | - // output |
|
83 | - switch ($encode) { |
|
84 | - |
|
85 | - case 'none': |
|
86 | - case null: |
|
87 | - return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
88 | - |
|
89 | - case 'js': |
|
90 | - case 'javascript': |
|
91 | - $str = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');'; |
|
92 | - $len = strlen($str); |
|
93 | - |
|
94 | - $out = ''; |
|
95 | - for ($i = 0; $i < $len; ++ $i) { |
|
96 | - $out .= '%' . bin2hex($str[$i]); |
|
97 | - } |
|
98 | - |
|
99 | - return '<script type="text/javascript">eval(unescape(\'' . $out . '\'));</script>'; |
|
100 | - |
|
101 | - break; |
|
102 | - case 'javascript_charcode': |
|
103 | - case 'js_charcode': |
|
104 | - case 'jscharcode': |
|
105 | - case 'jschar': |
|
106 | - $str = '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
107 | - $len = strlen($str); |
|
108 | - |
|
109 | - $out = '<script type="text/javascript">' . "\n<!--\ndocument.write(Str.fromCharCode("; |
|
110 | - for ($i = 0; $i < $len; ++ $i) { |
|
111 | - $out .= ord($str[$i]) . ','; |
|
112 | - } |
|
113 | - |
|
114 | - return rtrim($out, ',') . "));\n-->\n</script>\n"; |
|
115 | - |
|
116 | - break; |
|
117 | - |
|
118 | - case 'hex': |
|
119 | - if (strpos($address, '?') !== false) { |
|
120 | - $this->core->triggerError('Mailto: Hex encoding is not possible with extra attributes, use one of : <em>js, jscharcode or none</em>.', E_USER_WARNING); |
|
121 | - } |
|
122 | - |
|
123 | - $out = '<a href="mailto:'; |
|
124 | - $len = strlen($address); |
|
125 | - for ($i = 0; $i < $len; ++ $i) { |
|
126 | - if (preg_match('#\w#', $address[$i])) { |
|
127 | - $out .= '%' . bin2hex($address[$i]); |
|
128 | - } else { |
|
129 | - $out .= $address[$i]; |
|
130 | - } |
|
131 | - } |
|
132 | - $out .= '" ' . $extra . '>'; |
|
133 | - $len = strlen($text); |
|
134 | - for ($i = 0; $i < $len; ++ $i) { |
|
135 | - $out .= '&#x' . bin2hex($text[$i]); |
|
136 | - } |
|
137 | - |
|
138 | - return $out . '</a>'; |
|
139 | - |
|
140 | - default: |
|
141 | - $this->core->triggerError('Mailto: <em>encode</em> argument is invalid, it must be one of : <em>none (= no value), js, js_charcode or hex</em>', E_USER_WARNING); |
|
142 | - } |
|
143 | - } |
|
39 | + /** |
|
40 | + * @param $address |
|
41 | + * @param null $text |
|
42 | + * @param null $subject |
|
43 | + * @param null $encode |
|
44 | + * @param null $cc |
|
45 | + * @param null $bcc |
|
46 | + * @param null $newsgroups |
|
47 | + * @param null $followupto |
|
48 | + * @param null $extra |
|
49 | + * |
|
50 | + * @return string |
|
51 | + */ |
|
52 | + public function process($address, $text = null, $subject = null, $encode = null, $cc = null, $bcc = null, $newsgroups = null, $followupto = null, $extra = null) |
|
53 | + { |
|
54 | + if (empty($address)) { |
|
55 | + return ''; |
|
56 | + } |
|
57 | + if (empty($text)) { |
|
58 | + $text = $address; |
|
59 | + } |
|
60 | + |
|
61 | + // build address string |
|
62 | + $address .= '?'; |
|
63 | + |
|
64 | + if (!empty($subject)) { |
|
65 | + $address .= 'subject=' . rawurlencode($subject) . '&'; |
|
66 | + } |
|
67 | + if (!empty($cc)) { |
|
68 | + $address .= 'cc=' . rawurlencode($cc) . '&'; |
|
69 | + } |
|
70 | + if (!empty($bcc)) { |
|
71 | + $address .= 'bcc=' . rawurlencode($bcc) . '&'; |
|
72 | + } |
|
73 | + if (!empty($newsgroups)) { |
|
74 | + $address .= 'newsgroups=' . rawurlencode($newsgroups) . '&'; |
|
75 | + } |
|
76 | + if (!empty($followupto)) { |
|
77 | + $address .= 'followupto=' . rawurlencode($followupto) . '&'; |
|
78 | + } |
|
79 | + |
|
80 | + $address = rtrim($address, '?&'); |
|
81 | + |
|
82 | + // output |
|
83 | + switch ($encode) { |
|
84 | + |
|
85 | + case 'none': |
|
86 | + case null: |
|
87 | + return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
88 | + |
|
89 | + case 'js': |
|
90 | + case 'javascript': |
|
91 | + $str = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');'; |
|
92 | + $len = strlen($str); |
|
93 | + |
|
94 | + $out = ''; |
|
95 | + for ($i = 0; $i < $len; ++ $i) { |
|
96 | + $out .= '%' . bin2hex($str[$i]); |
|
97 | + } |
|
98 | + |
|
99 | + return '<script type="text/javascript">eval(unescape(\'' . $out . '\'));</script>'; |
|
100 | + |
|
101 | + break; |
|
102 | + case 'javascript_charcode': |
|
103 | + case 'js_charcode': |
|
104 | + case 'jscharcode': |
|
105 | + case 'jschar': |
|
106 | + $str = '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
107 | + $len = strlen($str); |
|
108 | + |
|
109 | + $out = '<script type="text/javascript">' . "\n<!--\ndocument.write(Str.fromCharCode("; |
|
110 | + for ($i = 0; $i < $len; ++ $i) { |
|
111 | + $out .= ord($str[$i]) . ','; |
|
112 | + } |
|
113 | + |
|
114 | + return rtrim($out, ',') . "));\n-->\n</script>\n"; |
|
115 | + |
|
116 | + break; |
|
117 | + |
|
118 | + case 'hex': |
|
119 | + if (strpos($address, '?') !== false) { |
|
120 | + $this->core->triggerError('Mailto: Hex encoding is not possible with extra attributes, use one of : <em>js, jscharcode or none</em>.', E_USER_WARNING); |
|
121 | + } |
|
122 | + |
|
123 | + $out = '<a href="mailto:'; |
|
124 | + $len = strlen($address); |
|
125 | + for ($i = 0; $i < $len; ++ $i) { |
|
126 | + if (preg_match('#\w#', $address[$i])) { |
|
127 | + $out .= '%' . bin2hex($address[$i]); |
|
128 | + } else { |
|
129 | + $out .= $address[$i]; |
|
130 | + } |
|
131 | + } |
|
132 | + $out .= '" ' . $extra . '>'; |
|
133 | + $len = strlen($text); |
|
134 | + for ($i = 0; $i < $len; ++ $i) { |
|
135 | + $out .= '&#x' . bin2hex($text[$i]); |
|
136 | + } |
|
137 | + |
|
138 | + return $out . '</a>'; |
|
139 | + |
|
140 | + default: |
|
141 | + $this->core->triggerError('Mailto: <em>encode</em> argument is invalid, it must be one of : <em>none (= no value), js, js_charcode or hex</em>', E_USER_WARNING); |
|
142 | + } |
|
143 | + } |
|
144 | 144 | } |
145 | 145 | \ No newline at end of file |
@@ -82,63 +82,63 @@ |
||
82 | 82 | // output |
83 | 83 | switch ($encode) { |
84 | 84 | |
85 | - case 'none': |
|
86 | - case null: |
|
87 | - return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
88 | - |
|
89 | - case 'js': |
|
90 | - case 'javascript': |
|
91 | - $str = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');'; |
|
92 | - $len = strlen($str); |
|
93 | - |
|
94 | - $out = ''; |
|
95 | - for ($i = 0; $i < $len; ++ $i) { |
|
96 | - $out .= '%' . bin2hex($str[$i]); |
|
85 | + case 'none': |
|
86 | + case null: |
|
87 | + return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
88 | + |
|
89 | + case 'js': |
|
90 | + case 'javascript': |
|
91 | + $str = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');'; |
|
92 | + $len = strlen($str); |
|
93 | + |
|
94 | + $out = ''; |
|
95 | + for ($i = 0; $i < $len; ++ $i) { |
|
96 | + $out .= '%' . bin2hex($str[$i]); |
|
97 | + } |
|
98 | + |
|
99 | + return '<script type="text/javascript">eval(unescape(\'' . $out . '\'));</script>'; |
|
100 | + |
|
101 | + break; |
|
102 | + case 'javascript_charcode': |
|
103 | + case 'js_charcode': |
|
104 | + case 'jscharcode': |
|
105 | + case 'jschar': |
|
106 | + $str = '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
107 | + $len = strlen($str); |
|
108 | + |
|
109 | + $out = '<script type="text/javascript">' . "\n<!--\ndocument.write(Str.fromCharCode("; |
|
110 | + for ($i = 0; $i < $len; ++ $i) { |
|
111 | + $out .= ord($str[$i]) . ','; |
|
112 | + } |
|
113 | + |
|
114 | + return rtrim($out, ',') . "));\n-->\n</script>\n"; |
|
115 | + |
|
116 | + break; |
|
117 | + |
|
118 | + case 'hex': |
|
119 | + if (strpos($address, '?') !== false) { |
|
120 | + $this->core->triggerError('Mailto: Hex encoding is not possible with extra attributes, use one of : <em>js, jscharcode or none</em>.', E_USER_WARNING); |
|
121 | + } |
|
122 | + |
|
123 | + $out = '<a href="mailto:'; |
|
124 | + $len = strlen($address); |
|
125 | + for ($i = 0; $i < $len; ++ $i) { |
|
126 | + if (preg_match('#\w#', $address[$i])) { |
|
127 | + $out .= '%' . bin2hex($address[$i]); |
|
128 | + } else { |
|
129 | + $out .= $address[$i]; |
|
97 | 130 | } |
131 | + } |
|
132 | + $out .= '" ' . $extra . '>'; |
|
133 | + $len = strlen($text); |
|
134 | + for ($i = 0; $i < $len; ++ $i) { |
|
135 | + $out .= '&#x' . bin2hex($text[$i]); |
|
136 | + } |
|
98 | 137 | |
99 | - return '<script type="text/javascript">eval(unescape(\'' . $out . '\'));</script>'; |
|
138 | + return $out . '</a>'; |
|
100 | 139 | |
101 | - break; |
|
102 | - case 'javascript_charcode': |
|
103 | - case 'js_charcode': |
|
104 | - case 'jscharcode': |
|
105 | - case 'jschar': |
|
106 | - $str = '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
107 | - $len = strlen($str); |
|
108 | - |
|
109 | - $out = '<script type="text/javascript">' . "\n<!--\ndocument.write(Str.fromCharCode("; |
|
110 | - for ($i = 0; $i < $len; ++ $i) { |
|
111 | - $out .= ord($str[$i]) . ','; |
|
112 | - } |
|
113 | - |
|
114 | - return rtrim($out, ',') . "));\n-->\n</script>\n"; |
|
115 | - |
|
116 | - break; |
|
117 | - |
|
118 | - case 'hex': |
|
119 | - if (strpos($address, '?') !== false) { |
|
120 | - $this->core->triggerError('Mailto: Hex encoding is not possible with extra attributes, use one of : <em>js, jscharcode or none</em>.', E_USER_WARNING); |
|
121 | - } |
|
122 | - |
|
123 | - $out = '<a href="mailto:'; |
|
124 | - $len = strlen($address); |
|
125 | - for ($i = 0; $i < $len; ++ $i) { |
|
126 | - if (preg_match('#\w#', $address[$i])) { |
|
127 | - $out .= '%' . bin2hex($address[$i]); |
|
128 | - } else { |
|
129 | - $out .= $address[$i]; |
|
130 | - } |
|
131 | - } |
|
132 | - $out .= '" ' . $extra . '>'; |
|
133 | - $len = strlen($text); |
|
134 | - for ($i = 0; $i < $len; ++ $i) { |
|
135 | - $out .= '&#x' . bin2hex($text[$i]); |
|
136 | - } |
|
137 | - |
|
138 | - return $out . '</a>'; |
|
139 | - |
|
140 | - default: |
|
141 | - $this->core->triggerError('Mailto: <em>encode</em> argument is invalid, it must be one of : <em>none (= no value), js, js_charcode or hex</em>', E_USER_WARNING); |
|
140 | + default: |
|
141 | + $this->core->triggerError('Mailto: <em>encode</em> argument is invalid, it must be one of : <em>none (= no value), js, js_charcode or hex</em>', E_USER_WARNING); |
|
142 | 142 | } |
143 | 143 | } |
144 | 144 | } |
145 | 145 | \ No newline at end of file |
@@ -62,19 +62,19 @@ discard block |
||
62 | 62 | $address .= '?'; |
63 | 63 | |
64 | 64 | if (!empty($subject)) { |
65 | - $address .= 'subject=' . rawurlencode($subject) . '&'; |
|
65 | + $address .= 'subject='.rawurlencode($subject).'&'; |
|
66 | 66 | } |
67 | 67 | if (!empty($cc)) { |
68 | - $address .= 'cc=' . rawurlencode($cc) . '&'; |
|
68 | + $address .= 'cc='.rawurlencode($cc).'&'; |
|
69 | 69 | } |
70 | 70 | if (!empty($bcc)) { |
71 | - $address .= 'bcc=' . rawurlencode($bcc) . '&'; |
|
71 | + $address .= 'bcc='.rawurlencode($bcc).'&'; |
|
72 | 72 | } |
73 | 73 | if (!empty($newsgroups)) { |
74 | - $address .= 'newsgroups=' . rawurlencode($newsgroups) . '&'; |
|
74 | + $address .= 'newsgroups='.rawurlencode($newsgroups).'&'; |
|
75 | 75 | } |
76 | 76 | if (!empty($followupto)) { |
77 | - $address .= 'followupto=' . rawurlencode($followupto) . '&'; |
|
77 | + $address .= 'followupto='.rawurlencode($followupto).'&'; |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | $address = rtrim($address, '?&'); |
@@ -84,34 +84,34 @@ discard block |
||
84 | 84 | |
85 | 85 | case 'none': |
86 | 86 | case null: |
87 | - return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
87 | + return '<a href="mailto:'.$address.'" '.$extra.'>'.$text.'</a>'; |
|
88 | 88 | |
89 | 89 | case 'js': |
90 | 90 | case 'javascript': |
91 | - $str = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');'; |
|
91 | + $str = 'document.write(\'<a href="mailto:'.$address.'" '.$extra.'>'.$text.'</a>\');'; |
|
92 | 92 | $len = strlen($str); |
93 | 93 | |
94 | 94 | $out = ''; |
95 | 95 | for ($i = 0; $i < $len; ++ $i) { |
96 | - $out .= '%' . bin2hex($str[$i]); |
|
96 | + $out .= '%'.bin2hex($str[$i]); |
|
97 | 97 | } |
98 | 98 | |
99 | - return '<script type="text/javascript">eval(unescape(\'' . $out . '\'));</script>'; |
|
99 | + return '<script type="text/javascript">eval(unescape(\''.$out.'\'));</script>'; |
|
100 | 100 | |
101 | 101 | break; |
102 | 102 | case 'javascript_charcode': |
103 | 103 | case 'js_charcode': |
104 | 104 | case 'jscharcode': |
105 | 105 | case 'jschar': |
106 | - $str = '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>'; |
|
106 | + $str = '<a href="mailto:'.$address.'" '.$extra.'>'.$text.'</a>'; |
|
107 | 107 | $len = strlen($str); |
108 | 108 | |
109 | - $out = '<script type="text/javascript">' . "\n<!--\ndocument.write(Str.fromCharCode("; |
|
109 | + $out = '<script type="text/javascript">'."\n<!--\ndocument.write(Str.fromCharCode("; |
|
110 | 110 | for ($i = 0; $i < $len; ++ $i) { |
111 | - $out .= ord($str[$i]) . ','; |
|
111 | + $out .= ord($str[$i]).','; |
|
112 | 112 | } |
113 | 113 | |
114 | - return rtrim($out, ',') . "));\n-->\n</script>\n"; |
|
114 | + return rtrim($out, ',')."));\n-->\n</script>\n"; |
|
115 | 115 | |
116 | 116 | break; |
117 | 117 | |
@@ -124,18 +124,18 @@ discard block |
||
124 | 124 | $len = strlen($address); |
125 | 125 | for ($i = 0; $i < $len; ++ $i) { |
126 | 126 | if (preg_match('#\w#', $address[$i])) { |
127 | - $out .= '%' . bin2hex($address[$i]); |
|
127 | + $out .= '%'.bin2hex($address[$i]); |
|
128 | 128 | } else { |
129 | 129 | $out .= $address[$i]; |
130 | 130 | } |
131 | 131 | } |
132 | - $out .= '" ' . $extra . '>'; |
|
132 | + $out .= '" '.$extra.'>'; |
|
133 | 133 | $len = strlen($text); |
134 | 134 | for ($i = 0; $i < $len; ++ $i) { |
135 | - $out .= '&#x' . bin2hex($text[$i]); |
|
135 | + $out .= '&#x'.bin2hex($text[$i]); |
|
136 | 136 | } |
137 | 137 | |
138 | - return $out . '</a>'; |
|
138 | + return $out.'</a>'; |
|
139 | 139 | |
140 | 140 | default: |
141 | 141 | $this->core->triggerError('Mailto: <em>encode</em> argument is invalid, it must be one of : <em>none (= no value), js, js_charcode or hex</em>', E_USER_WARNING); |