diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-10-06 14:08:15 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-10-06 16:09:05 +0200 |
commit | 98ee99071cf5556a323ae7f7bffd341fc03f7a6d (patch) | |
tree | 287932ed3eaa721363974fddbe27ba4227dffc41 /Zotlabs/Module/Pubstream.php | |
parent | 97acfd23fb3cfaba4ce388a5b21b98d136282ba6 (diff) | |
download | volse-hubzilla-98ee99071cf5556a323ae7f7bffd341fc03f7a6d.tar.gz volse-hubzilla-98ee99071cf5556a323ae7f7bffd341fc03f7a6d.tar.bz2 volse-hubzilla-98ee99071cf5556a323ae7f7bffd341fc03f7a6d.zip |
pubstream app
(cherry picked from commit b8991750c5d36714100d20595da6a33149bd7d5d)
Diffstat (limited to 'Zotlabs/Module/Pubstream.php')
-rw-r--r-- | Zotlabs/Module/Pubstream.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php index 19cb72b5b..94df29984 100644 --- a/Zotlabs/Module/Pubstream.php +++ b/Zotlabs/Module/Pubstream.php @@ -1,6 +1,9 @@ <?php namespace Zotlabs\Module; +use App; +use Zotlabs\Lib\Apps; + require_once('include/conversation.php'); require_once('include/acl_selectors.php'); @@ -9,6 +12,17 @@ class Pubstream extends \Zotlabs\Web\Controller { function get($update = 0, $load = false) { + if(local_channel()) { + if(! Apps::system_app_installed(local_channel(), 'Public Stream')) { + //Do not display any associated widgets at this point + App::$pdl = ''; + + $o = '<b>' . t('Public Stream App') . ' (' . t('Not Installed') . '):</b><br>'; + $o .= t('The unmoderated public stream of this hub'); + return $o; + } + } + if($load) $_SESSION['loadtime'] = datetime_convert(); |