openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

SingleSignonAuth.class.php (349B)


      1 <?php
      2 
      3 namespace cms\auth;
      4 
      5 /**
      6  * Single-Signon-Authentifizierung.
      7  *
      8  * @author dankert
      9  */
     10 class SingleSignonAuth implements Auth
     11 {
     12 	public function username()
     13 	{
     14 		return null;
     15 	}
     16 
     17 
     18 	/**
     19 	 * Ueberpruefen des Kennwortes ist über Ident nicht möglich.
     20 	 */
     21 	public function login($user, $password, $token)
     22 	{
     23 		return Auth::STATUS_FAILED;;
     24 	}
     25 }
     26