mirror of
https://github.com/nextcloud/server.git
synced 2025-01-16 16:19:00 +00:00
35d614057c
Signed-off-by: provokateurin <kate@provokateurin.de>
42 lines
942 B
PHP
42 lines
942 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\Settings\Settings\Personal\Security;
|
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\IUserManager;
|
|
use OCP\Settings\ISettings;
|
|
|
|
class Password implements ISettings {
|
|
|
|
public function __construct(
|
|
private IUserManager $userManager,
|
|
private ?string $userId,
|
|
) {
|
|
}
|
|
|
|
public function getForm(): TemplateResponse {
|
|
$user = $this->userManager->get($this->userId);
|
|
$passwordChangeSupported = false;
|
|
if ($user !== null) {
|
|
$passwordChangeSupported = $user->canChangePassword();
|
|
}
|
|
|
|
return new TemplateResponse('settings', 'settings/personal/security/password', [
|
|
'passwordChangeSupported' => $passwordChangeSupported,
|
|
]);
|
|
}
|
|
|
|
public function getSection(): string {
|
|
return 'security';
|
|
}
|
|
|
|
public function getPriority(): int {
|
|
return 10;
|
|
}
|
|
}
|