diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-10-06 15:27:46 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-10-06 15:27:46 +0200 |
commit | 18726737d0116f13ec83cb2c1094a36d08980b7d (patch) | |
tree | eafab154ecf723888a73299402b3eab4acef3b37 /Zotlabs/Module/Randprof.php | |
parent | 6a297a8f3d5eb4c403a14799e83de22d0637b46d (diff) | |
download | volse-hubzilla-18726737d0116f13ec83cb2c1094a36d08980b7d.tar.gz volse-hubzilla-18726737d0116f13ec83cb2c1094a36d08980b7d.tar.bz2 volse-hubzilla-18726737d0116f13ec83cb2c1094a36d08980b7d.zip |
randprof app
Diffstat (limited to 'Zotlabs/Module/Randprof.php')
-rw-r--r-- | Zotlabs/Module/Randprof.php | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/Zotlabs/Module/Randprof.php b/Zotlabs/Module/Randprof.php index 94ec095cb..c38b07ead 100644 --- a/Zotlabs/Module/Randprof.php +++ b/Zotlabs/Module/Randprof.php @@ -1,11 +1,17 @@ <?php namespace Zotlabs\Module; - +use App; +use Zotlabs\Lib\Apps; class Randprof extends \Zotlabs\Web\Controller { function init() { + if(local_channel()) { + if(! Apps::system_app_installed(local_channel(), 'Random Channel')) + return; + } + $x = random_profile(); if($x) goaway(chanlink_hash($x)); @@ -13,5 +19,19 @@ class Randprof extends \Zotlabs\Web\Controller { /** FIXME this doesn't work at the moment as a fallback */ goaway(z_root() . '/profile'); } + + function get() { + if(local_channel()) { + if(! Apps::system_app_installed(local_channel(), 'Random Channel')) { + //Do not display any associated widgets at this point + App::$pdl = ''; + + $o = '<b>' . t('Random Channel App') . ' (' . t('Not Installed') . '):</b><br>'; + $o .= t('Visit a random channel in the $Projectname network'); + return $o; + } + } + + } } |