2012-04-13 06:06:41 +00:00
|
|
|
<?php
|
2017-11-15 15:53:16 +00:00
|
|
|
/**
|
|
|
|
* @file mod/nogroup.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-21 18:33:59 +00:00
|
|
|
use Friendica\Core\L10n;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2017-11-15 15:53:16 +00:00
|
|
|
function nogroup_init(App $a)
|
|
|
|
{
|
2016-12-20 10:56:34 +00:00
|
|
|
if (! local_user()) {
|
2012-04-13 06:06:41 +00:00
|
|
|
return;
|
2016-12-20 10:56:34 +00:00
|
|
|
}
|
2012-04-13 06:06:41 +00:00
|
|
|
}
|
|
|
|
|
2017-11-15 15:53:16 +00:00
|
|
|
function nogroup_content(App $a)
|
|
|
|
{
|
2016-12-20 10:56:34 +00:00
|
|
|
if (! local_user()) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2012-04-13 06:06:41 +00:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2018-10-19 18:11:27 +00:00
|
|
|
$a->internalRedirect('group/none');
|
2012-04-13 06:06:41 +00:00
|
|
|
}
|