blob: 731d3aece1d90ee036ea56ca7108f6af191d66ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?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));
/** 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 = '';
$papp = Apps::get_papp('Random Channel');
return Apps::app_render($papp, 'module');
}
}
}
}
|