Skip to content
Snippets Groups Projects
Commit 5221ee0c authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

offer change password only when the action is supported by the user backend

parent e6400b30
No related branches found
No related tags found
No related merge requests found
......@@ -419,6 +419,24 @@ class OC_User {
}
}
/**
* @brief Check whether user can change his password
* @param $uid The username
* @returns true/false
*
* Check whether a specified user can change his password
*/
public static function canUserChangePassword($uid) {
foreach(self::$_usedBackends as $backend) {
if($backend->implementsActions(OC_USER_BACKEND_SET_PASSWORD)) {
if($backend->userExists($uid)) {
return true;
}
}
}
return false;
}
/**
* @brief Check if the password is correct
* @param $uid The username
......
......@@ -47,6 +47,7 @@ $tmpl->assign('total_space', OC_Helper::humanFileSize($storageInfo['total']));
$tmpl->assign('usage_relative', $storageInfo['relative']);
$tmpl->assign('email', $email);
$tmpl->assign('languages', $languages);
$tmpl->assign('passwordChangeSupported', OC_User::canUserChangePassword(OC_User::getUser()));
$forms=OC_App::getForms('personal');
$tmpl->assign('forms', array());
......
......@@ -15,7 +15,9 @@
<a class="button" href="https://itunes.apple.com/us/app/owncloud/id543672169?mt=8" target="_blank"><?php echo $l->t('Download iOS Client');?></a>
</fieldset>
<?php
if($_['passwordChangeSupported']) {
?>
<form id="passwordform">
<fieldset class="personalblock">
<legend><strong><?php echo $l->t('Password');?></strong></legend>
......@@ -27,6 +29,9 @@
<input id="passwordbutton" type="submit" value="<?php echo $l->t('Change password');?>" />
</fieldset>
</form>
<?php
}
?>
<form id="lostpassword">
<fieldset class="personalblock">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment