diff options
author | zotlabs <mike@macgirvin.com> | 2018-09-16 19:05:12 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-09-16 19:05:12 -0700 |
commit | 27617efbfbeb2c7a608093a5dfd58679a8393de0 (patch) | |
tree | b99dc3609e2caedc1598659436e26da63420d95a /Zotlabs/Module/Mood.php | |
parent | 6ab12597f508294d37fddeca789033c1729600d8 (diff) | |
parent | 07cd1d1272bd301c2f41f5579697754ccbbf5ae3 (diff) | |
download | volse-hubzilla-27617efbfbeb2c7a608093a5dfd58679a8393de0.tar.gz volse-hubzilla-27617efbfbeb2c7a608093a5dfd58679a8393de0.tar.bz2 volse-hubzilla-27617efbfbeb2c7a608093a5dfd58679a8393de0.zip |
Merge branch 'dev'
Diffstat (limited to 'Zotlabs/Module/Mood.php')
-rw-r--r-- | Zotlabs/Module/Mood.php | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/Zotlabs/Module/Mood.php b/Zotlabs/Module/Mood.php index ad29ec7e8..cceef5ffa 100644 --- a/Zotlabs/Module/Mood.php +++ b/Zotlabs/Module/Mood.php @@ -1,21 +1,29 @@ <?php namespace Zotlabs\Module; +use App; +use Zotlabs\Lib\Apps; +use Zotlabs\Web\Controller; + require_once('include/security.php'); require_once('include/bbcode.php'); require_once('include/items.php'); -class Mood extends \Zotlabs\Web\Controller { +class Mood extends Controller { function init() { if(! local_channel()) return; + + if(! Apps::system_app_installed(local_channel(), 'Mood')) { + return; + } $uid = local_channel(); - $channel = \App::get_channel(); + $channel = App::get_channel(); $verb = notags(trim($_GET['verb'])); if(! $verb) @@ -60,7 +68,7 @@ class Mood extends \Zotlabs\Web\Controller { $deny_gid = $channel['channel_deny_gid']; } - $poster = \App::get_observer(); + $poster = App::get_observer(); $mid = item_message_id(); @@ -117,6 +125,15 @@ class Mood extends \Zotlabs\Web\Controller { return; } + if(! Apps::system_app_installed(local_channel(), 'Mood')) { + //Do not display any associated widgets at this point + App::$pdl = ''; + + $o = '<b>Mood App (Not Installed):</b><br>'; + $o .= t('Set your current mood and tell your friends'); + return $o; + } + nav_set_selected('Mood'); $parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : '0'); |