diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-22 15:39:06 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-22 15:39:06 -0800 |
commit | 6c178d44858bbdfd582d09eb4568d32292c0b2c2 (patch) | |
tree | ef71ebbdd8629b8c66a52f8b14d0e9db16670499 /Zotlabs/Widget | |
parent | 8bd8af7d16d6b4fb40680bd33b99bbfd582a1208 (diff) | |
download | volse-hubzilla-6c178d44858bbdfd582d09eb4568d32292c0b2c2.tar.gz volse-hubzilla-6c178d44858bbdfd582d09eb4568d32292c0b2c2.tar.bz2 volse-hubzilla-6c178d44858bbdfd582d09eb4568d32292c0b2c2.zip |
article feature
Diffstat (limited to 'Zotlabs/Widget')
-rw-r--r-- | Zotlabs/Widget/Categories.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Categories.php b/Zotlabs/Widget/Categories.php index 305869706..9bfa9742a 100644 --- a/Zotlabs/Widget/Categories.php +++ b/Zotlabs/Widget/Categories.php @@ -13,8 +13,14 @@ class Categories { if(($cards) && (! feature_enabled(\App::$profile['profile_uid'],'cards'))) return ''; + $articles = ((array_key_exists('articles',$arr) && $arr['articles']) ? true : false); + + if(($articles) && (! feature_enabled(\App::$profile['profile_uid'],'articles'))) + return ''; + + if((! \App::$profile['profile_uid']) - || (! perm_is_allowed(\App::$profile['profile_uid'],get_observer_hash(),(($cards) ? 'view_pages' : 'view_stream')))) { + || (! perm_is_allowed(\App::$profile['profile_uid'],get_observer_hash(),(($cards || $articles) ? 'view_pages' : 'view_stream')))) { return ''; } @@ -25,6 +31,8 @@ class Categories { if($cards) return cardcategories_widget($srchurl, $cat); + elseif($articles) + return articlecategories_widget($srchurl, $cat); else return categories_widget($srchurl, $cat); |