File_SMBPasswd::modAccount()

File_SMBPasswd::modAccount() -- modify an exsting account with the given plaintext-password.

Synopsis

mixed File_SMBPasswd::modAccount (string $user, int $userid [, string $pass = '' [, string $comment = '' [, string $flags = '']]])

Beschreibung

This method works in the same way as File_SMBPasswd::modAccountEncrypted() , except the password has to be given as plaintext. The encryption is done internaly.

Parameter

Rückgabewert

mixed - Gibt bei Erfolg TRUE zurück, bei einem Fehler ein Objekt der Klasse PEAR_Error.

Hinweise

Diese Methode kann nicht statisch aufgerufen werden.

Siehe auch

File_SMBPasswd::addAccount()
File_SMBPasswd::modAccountEncrypted()
File_SMBPasswd::modUser()

Beispiel

Beispiel 44-1. Using File_SMBPasswd::modAccount()


<?php
require_once 'File/SMBPasswd.php';

// modify user mbretter
$fh = new File_SMBPasswd('/usr/local/private/smbpasswd');
$fh->load();
$status $fh->modAccount(
    'mbretter', 
    1005, 
    'MyPwa',
    'Michaela Bretterklieber');
if (PEAR::isError($status)) {
    // handle errors
} else {
    $fh->save();
}

?>