32ef5623ab
* Improve group-editing and edit-navigation. Use icons next to groups and header for navigation to editing groups and adding new groups. Also use icon from group-sidebar for editing groups. * Unify look&feel of contact search bars. * Remove nogroup page and replace with /group/none. * Make sure proper items are selected in aside. * Use icon instead of link for 'View Contacs' on profile page. * Fix none-working /group/none. * Fix highlighting for everyone in group aside.
29 lines
473 B
PHP
29 lines
473 B
PHP
<?php
|
|
/**
|
|
* @file mod/nogroup.php
|
|
*/
|
|
use Friendica\App;
|
|
use Friendica\Content\ContactSelector;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Database\DBM;
|
|
use Friendica\Model\Contact;
|
|
use Friendica\Model\Group;
|
|
use Friendica\Core\System;
|
|
|
|
function nogroup_init(App $a)
|
|
{
|
|
if (! local_user()) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
function nogroup_content(App $a)
|
|
{
|
|
if (! local_user()) {
|
|
notice(L10n::t('Permission denied.') . EOL);
|
|
return '';
|
|
}
|
|
|
|
goaway(System::baseUrl() . '/group/none');
|
|
}
|