aboutsummaryrefslogtreecommitdiffstats
path: root/include/zid.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-01-17 15:25:30 -0800
committerzotlabs <mike@macgirvin.com>2018-01-17 15:25:30 -0800
commitc331e585b8ada2c281815193df0d3e1b172ebe0e (patch)
treeae61759099b99682e6dc797c32981e2a720edf06 /include/zid.php
parent82306682c601688041ccfd9a7b259bc607301a37 (diff)
downloadvolse-hubzilla-c331e585b8ada2c281815193df0d3e1b172ebe0e.tar.gz
volse-hubzilla-c331e585b8ada2c281815193df0d3e1b172ebe0e.tar.bz2
volse-hubzilla-c331e585b8ada2c281815193df0d3e1b172ebe0e.zip
remove sendzid core code from core (put in plugin where it belongs)
Diffstat (limited to 'include/zid.php')
-rw-r--r--include/zid.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/include/zid.php b/include/zid.php
index 6ebc9a6ab..b3a7d1e6a 100644
--- a/include/zid.php
+++ b/include/zid.php
@@ -127,8 +127,11 @@ function clean_query_string($s = '') {
* @return string
*/
function zidify_callback($match) {
- $is_zid = ((feature_enabled(local_channel(), 'sendzid')) || (strpos($match[1], 'zrl')) ? true : false);
- $replace = '<a' . $match[1] . ' href="' . (($is_zid) ? zid($match[2]) : $match[2]) . '"';
+
+ $arr = [ 'zid' => ((strpos($match[1],'zrl')) ? true : false), 'url' => $match[2] ];
+ call_hooks('zidify', $arr);
+
+ $replace = '<a' . $match[1] . ' href="' . (intval($arr['zid']) ? zid($arr['url']) : $arr['url']) . '"';
$x = str_replace($match[0], $replace, $match[0]);
@@ -136,8 +139,11 @@ function zidify_callback($match) {
}
function zidify_img_callback($match) {
- $is_zid = ((feature_enabled(local_channel(), 'sendzid')) || (strpos($match[1], 'zrl')) ? true : false);
- $replace = '<img' . $match[1] . ' src="' . (($is_zid) ? zid($match[2]) : $match[2]) . '"';
+
+ $arr = [ 'zid' => ((strpos($match[1],'zrl')) ? true : false), 'url' => $match[2] ];
+ call_hooks('zidify', $arr);
+
+ $replace = '<img' . $match[1] . ' src="' . (intval($arr['zid']) ? zid($arr['url']) : $arr['url']) . '"';
$x = str_replace($match[0], $replace, $match[0]);