diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-02-23 18:51:11 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-02-23 18:51:11 -0500 |
commit | dd579937e36ec494372d8d99b49d0943ea2b721d (patch) | |
tree | bb6817dc1c8269ac1ddac6561b48ecca0057b01f /app/Helper | |
parent | 73b2f51fe53a9227fbea2ef8455672ec53e636ce (diff) |
Add helper method to use implode() with HTML escaping
Diffstat (limited to 'app/Helper')
-rw-r--r-- | app/Helper/TextHelper.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/Helper/TextHelper.php b/app/Helper/TextHelper.php index 66583cd1..89c1a8f3 100644 --- a/app/Helper/TextHelper.php +++ b/app/Helper/TextHelper.php @@ -25,6 +25,19 @@ class TextHelper extends Base } /** + * Join with HTML escaping + * + * @param $glue + * @param array $list + * @return string + */ + public function implode($glue, array $list) + { + array_walk($list, function (&$value) { $value = htmlspecialchars($value, ENT_QUOTES, 'UTF-8', false); }); + return implode($glue, $list); + } + + /** * Markdown transformation * * @param string $text |