AuthPlugin::doSetUserPassword PHP Method

doSetUserPassword() public method

Update remote user password, if enabled.
public doSetUserPassword ( $username, $password ) : boolean
$username string
$password string
return boolean true if successful
    function doSetUserPassword($username, $password)
    {
        if (isset($this->settings['syncPasswords'])) {
            return $this->setUserPassword($username, $password);
        }
        return false;
    }