|
ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
|
Inheritance diagram for Auth_Container_KADM5:
Collaboration diagram for Auth_Container_KADM5:Public Member Functions | |
| Auth_Container_KADM5 ($options) | |
| Constructor of the container class. More... | |
| fetchData ($username, $password) | |
| Try to login to the KADM5 server. More... | |
| _setDefaults () | |
| Set some default options. More... | |
| _checkServer () | |
| Check if the given server and port are reachable. More... | |
Public Member Functions inherited from Auth_Container | |
| Auth_Container () | |
| Constructor. More... | |
| fetchData ($username, $password, $isChallengeResponse=false) | |
| Fetch data from storage container. More... | |
| verifyPassword ($password1, $password2, $cryptType="md5") | |
| Crypt and verfiy the entered password. More... | |
| supportsChallengeResponse () | |
| Returns true if the container supports Challenge Response password authentication. More... | |
| getCryptType () | |
| Returns the crypt current crypt type of the container. More... | |
| listUsers () | |
| List all users that are available from the storage container. More... | |
| getUser ($username) | |
| Returns a user assoc array. More... | |
| addUser ($username, $password, $additional=null) | |
| Add a new user to the storage container. More... | |
| removeUser ($username) | |
| Remove user from the storage container. More... | |
| changePassword ($username, $password) | |
| Change password for user in the storage container. More... | |
| log ($message, $level=AUTH_LOG_DEBUG) | |
| Log a message to the Auth log. More... | |
Public Member Functions inherited from ilAuthContainerBase | |
| loginObserver ($a_username, $a_auth) | |
| Called after successful login. More... | |
| failedLoginObserver ($a_username, $a_auth) | |
| Called after failed login. More... | |
| checkAuthObserver ($a_username, $a_auth) | |
| Called after check auth requests. More... | |
| logoutObserver ($a_username, $a_auth) | |
| Called after logout. More... | |
| supportsCaptchaVerification () | |
| Returns whether or not the auth container supports the verification of captchas This should be true for those auth methods, which are available in the default login form. More... | |
Data Fields | |
| $options = array() | |
Data Fields inherited from Auth_Container | |
| $activeUser = "" | |
| User that is currently selected from the storage container. More... | |
| $_auth_obj = null | |
| The Auth object this container is attached to. More... | |
| Auth_Container_KADM5::_checkServer | ( | ) |
Check if the given server and port are reachable.
@access private
Definition at line 156 of file KADM5.php.
References PEAR_ERROR_DIE, and PEAR\raiseError().
Referenced by Auth_Container_KADM5().
Here is the call graph for this function:
Here is the caller graph for this function:| Auth_Container_KADM5::_setDefaults | ( | ) |
Set some default options.
@access private
Definition at line 141 of file KADM5.php.
Referenced by Auth_Container_KADM5().
Here is the caller graph for this function:| Auth_Container_KADM5::Auth_Container_KADM5 | ( | $options | ) |
Constructor of the container class.
$options can have these keys: 'hostname' The hostname of the kerberos server 'realm' The Kerberos V realm 'timeout' The timeout for checking the server 'checkServer' Set to true to check if the server is running when constructing the object
| $options | associative array |
Definition at line 81 of file KADM5.php.
References $options, _checkServer(), _setDefaults(), PEAR_ERROR_DIE, and PEAR\raiseError().
Here is the call graph for this function:| Auth_Container_KADM5::fetchData | ( | $username, | |
| $password | |||
| ) |
Try to login to the KADM5 server.
| string | Username |
| string | Password |
Definition at line 116 of file KADM5.php.
References $server, AUTH_LOG_DEBUG, and Auth_Container\log().
Here is the call graph for this function:| Auth_Container_KADM5::$options = array() |
Definition at line 63 of file KADM5.php.
Referenced by Auth_Container_KADM5().