ILIAS  release_4-4 Revision
ilAuthContainerBase Class Reference

Base class for all ILIAS PEAR container classes More...

+ Inheritance diagram for ilAuthContainerBase:
+ Collaboration diagram for ilAuthContainerBase:

Public Member Functions

 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...
 

Detailed Description

Base class for all ILIAS PEAR container classes

Author
Stefan Meyer <smeye.nosp@m.r.il.nosp@m.ias@g.nosp@m.mx.d.nosp@m.e
Version
$id$

Definition at line 32 of file class.ilAuthContainerBase.php.

Member Function Documentation

◆ checkAuthObserver()

ilAuthContainerBase::checkAuthObserver (   $a_username,
  $a_auth 
)

Called after check auth requests.

Returns
bool
Parameters
stringusername
objectPEAR auth object

Definition at line 65 of file class.ilAuthContainerBase.php.

66  {
67  return true;
68  }

◆ failedLoginObserver()

ilAuthContainerBase::failedLoginObserver (   $a_username,
  $a_auth 
)

Called after failed login.

Returns
bool
Parameters
stringusername
objectPEAR auth object

Definition at line 53 of file class.ilAuthContainerBase.php.

54  {
55  return false;
56  }

◆ loginObserver()

ilAuthContainerBase::loginObserver (   $a_username,
  $a_auth 
)

Called after successful login.

Returns
bool
Parameters
object$a_username
object$a_auth

Definition at line 41 of file class.ilAuthContainerBase.php.

42  {
43  return true;
44  }

◆ logoutObserver()

ilAuthContainerBase::logoutObserver (   $a_username,
  $a_auth 
)

Called after logout.

Returns
bool
Parameters
stringusername
objectPEAR auth object

Definition at line 77 of file class.ilAuthContainerBase.php.

78  {
79 
80  }

◆ supportsCaptchaVerification()

ilAuthContainerBase::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.

Returns
bool

Definition at line 87 of file class.ilAuthContainerBase.php.

88  {
89  return false;
90  }

The documentation for this class was generated from the following file: