Files
sihnon-php-lib/source/lib/SihnonFramework/Auth/IUpdateable.class.php
Ben Roberts d92cc576d7 Initial commit of Session/Authentication code
Plugin architecture with single Database-backed implementation.
2011-12-19 12:13:14 +00:00

13 lines
257 B
PHP

<?php
interface SihnonFramework_Auth_IUpdateable {
public function addUser($username, $password);
public function removeUser(Sihnon_Auth_IUser $user);
public function changePassword(Sihnon_Auth_IUser $user, $new_password);
}
?>