diff options
author | Mario <mario@mariovavti.com> | 2021-06-18 09:51:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-18 09:51:20 +0000 |
commit | c42d8a81c729ff8441195371106e96d398210067 (patch) | |
tree | 3380702c7290832ff785f740e8f7c4f2e4bc9205 /include/bbcode.php | |
parent | 0e7473c3ba4e1da24ee4b7c9cc32645364e31a3d (diff) | |
download | volse-hubzilla-c42d8a81c729ff8441195371106e96d398210067.tar.gz volse-hubzilla-c42d8a81c729ff8441195371106e96d398210067.tar.bz2 volse-hubzilla-c42d8a81c729ff8441195371106e96d398210067.zip |
bbcode: add option to drop media content
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index a362e9ce9..87a7e6af6 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -1099,6 +1099,27 @@ function bbcode($Text, $options = []) { call_hooks('bbcode_filter', $Text); + if(isset($options['drop_media'])) { + if (strpos($Text,'[/img]') !== false) { + $Text = preg_replace('/\[img(.*?)\[\/(img)\]/ism', '', $Text); + } + if (strpos($Text,'[/audio]') !== false) { + $Text = preg_replace('/\[audio(.*?)\[\/(audio)\]/ism', '', $Text); + } + if (strpos($Text,'[/video]') !== false) { + $Text = preg_replace('/\[video(.*?)\[\/(video)\]/ism', '', $Text); + } + if (strpos($Text,'[/zmg]') !== false) { + $Text = preg_replace('/\[zmg(.*?)\[\/(zmg)\]/ism', '', $Text); + } + if (strpos($Text,'[/zaudio]') !== false) { + $Text = preg_replace('/\[zaudio(.*?)\[\/(zaudio)\]/ism', '', $Text); + } + if (strpos($Text,'[/zvideo]') !== false) { + $Text = preg_replace('/\[zvideo(.*?)\[\/(zvideo)\]/ism', '', $Text); + } + } + // Hide all [noparse] contained bbtags by spacefying them if (strpos($Text,'[noparse]') !== false) { $Text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'bb_spacefy',$Text); |