aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-12-06 20:45:21 -0800
committerredmatrix <redmatrix@redmatrix.me>2015-12-06 20:45:21 -0800
commitf7f0d2b265b764e1a7bb032473108ca2cfaeb4a5 (patch)
treeebedb98cfdc4c8bd5d8dffe9953280c338558db7 /include/network.php
parent2d799f2c114bbd540a6b2f260e512ad5fcf1db5c (diff)
downloadvolse-hubzilla-f7f0d2b265b764e1a7bb032473108ca2cfaeb4a5.tar.gz
volse-hubzilla-f7f0d2b265b764e1a7bb032473108ca2cfaeb4a5.tar.bz2
volse-hubzilla-f7f0d2b265b764e1a7bb032473108ca2cfaeb4a5.zip
provide plugin hooks for blacklist checking functions.
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/network.php b/include/network.php
index f386afc8e..5895d302b 100644
--- a/include/network.php
+++ b/include/network.php
@@ -1822,6 +1822,13 @@ function check_siteallowed($url) {
$retvalue = true;
+
+ $arr = array('url' => $url);
+ call_hooks('check_siteallowed',$arr);
+
+ if(array_key_exists('allowed',$arr))
+ return $arr['allowed'];
+
$bl1 = get_config('system','whitelisted_sites');
if(is_array($bl1) && $bl1) {
foreach($bl1 as $bl) {
@@ -1848,6 +1855,12 @@ function check_channelallowed($hash) {
$retvalue = true;
+ $arr = array('hash' => $hash);
+ call_hooks('check_channelallowed',$arr);
+
+ if(array_key_exists('allowed',$arr))
+ return $arr['allowed'];
+
$bl1 = get_config('system','whitelisted_channels');
if(is_array($bl1) && $bl1) {
foreach($bl1 as $bl) {