aboutsummaryrefslogtreecommitdiffstats
path: root/include/zid.php
diff options
context:
space:
mode:
authormrjive <mrjive@mrjive.it>2018-01-22 09:34:08 +0100
committerGitHub <noreply@github.com>2018-01-22 09:34:08 +0100
commit131baa9f4584b74ab76328d776c0bb5ce603da7d (patch)
treec962a68dbf7874e326f4ca268fe0183ac184ea12 /include/zid.php
parent8e475810a74f738fe3b23648b904639e5099d995 (diff)
parent1709dbd376af3171815f25b7055fb41da53924cb (diff)
downloadvolse-hubzilla-131baa9f4584b74ab76328d776c0bb5ce603da7d.tar.gz
volse-hubzilla-131baa9f4584b74ab76328d776c0bb5ce603da7d.tar.bz2
volse-hubzilla-131baa9f4584b74ab76328d776c0bb5ce603da7d.zip
Merge pull request #10 from redmatrix/dev
Dev
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]);