mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Provide initial state
Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
parent
079f76ab12
commit
d4d59493a2
1 changed files with 28 additions and 2 deletions
|
|
@ -145,14 +145,17 @@ class PersonalInfo implements ISettings {
|
|||
'groups' => $this->getGroups($user),
|
||||
] + $messageParameters + $languageParameters + $localeParameters;
|
||||
|
||||
$emails = $this->getEmails($account);
|
||||
$personalInfoParameters = [
|
||||
'displayNames' => $this->getDisplayNames($account),
|
||||
'emails' => $this->getEmails($account),
|
||||
];
|
||||
|
||||
$accountParameters = [
|
||||
'displayNameChangeSupported' => $user->canChangeDisplayName(),
|
||||
'lookupServerUploadEnabled' => $lookupServerUploadEnabled,
|
||||
];
|
||||
|
||||
$this->initialStateService->provideInitialState('emails', $emails);
|
||||
$this->initialStateService->provideInitialState('personalInfoParameters', $personalInfoParameters);
|
||||
$this->initialStateService->provideInitialState('accountParameters', $accountParameters);
|
||||
|
||||
return new TemplateResponse('settings', 'settings/personal/personal.info', $parameters, '');
|
||||
|
|
@ -196,6 +199,29 @@ class PersonalInfo implements ISettings {
|
|||
return $groups;
|
||||
}
|
||||
|
||||
/**
|
||||
* returns the primary display name in an
|
||||
* associative array
|
||||
*
|
||||
* NOTE may be extended to provide additional display names (i.e. aliases) in the future
|
||||
*
|
||||
* @param IAccount $account
|
||||
* @return array
|
||||
*/
|
||||
private function getDisplayNames(IAccount $account): array {
|
||||
$primaryDisplayName = [
|
||||
'value' => $account->getProperty(IAccountManager::PROPERTY_DISPLAYNAME)->getValue(),
|
||||
'scope' => $account->getProperty(IAccountManager::PROPERTY_DISPLAYNAME)->getScope(),
|
||||
'verified' => $account->getProperty(IAccountManager::PROPERTY_DISPLAYNAME)->getVerified(),
|
||||
];
|
||||
|
||||
$displayNames = [
|
||||
'primaryDisplayName' => $primaryDisplayName,
|
||||
];
|
||||
|
||||
return $displayNames;
|
||||
}
|
||||
|
||||
/**
|
||||
* returns the primary email and additional emails in an
|
||||
* associative array
|
||||
|
|
|
|||
Loading…
Reference in a new issue