mirror of
https://github.com/friendica/friendica
synced 2025-04-26 13:10:11 +00:00
Dedicated circle name for groups
This commit is contained in:
parent
9f9898d47a
commit
e562dbd59c
9 changed files with 274 additions and 234 deletions
|
@ -483,7 +483,7 @@ class User
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the default circle for a given user and network
|
||||
* Returns the default circle for a given user
|
||||
*
|
||||
* @param int $uid User id
|
||||
*
|
||||
|
@ -502,6 +502,24 @@ class User
|
|||
return $default_circle;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the default circle for groups for a given user
|
||||
*
|
||||
* @param int $uid User id
|
||||
*
|
||||
* @return int circle id
|
||||
* @throws Exception
|
||||
*/
|
||||
public static function getDefaultGroupCircle(int $uid): int
|
||||
{
|
||||
$default_circle = DI::pConfig()->get($uid, 'system', 'default-group-gid');
|
||||
if (empty($default_circle)) {
|
||||
$default_circle = self::getDefaultCircle($uid);
|
||||
}
|
||||
|
||||
return $default_circle;
|
||||
}
|
||||
|
||||
/**
|
||||
* Authenticate a user with a clear text password
|
||||
*
|
||||
|
@ -1208,6 +1226,11 @@ class User
|
|||
|
||||
DBA::update('user', $fields, ['uid' => $uid]);
|
||||
|
||||
$def_gid_groups = Circle::create($uid, DI::l10n()->t('Groups'));
|
||||
if (!$def_gid_groups) {
|
||||
DI::pConfig()->set($uid, 'system', 'default-group-gid', $def_gid_groups);
|
||||
}
|
||||
|
||||
// if we have no OpenID photo try to look up an avatar
|
||||
if (!strlen($photo)) {
|
||||
$photo = Network::lookupAvatarByEmail($email);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue