openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

SingleSignonAuth.class.php (305B)


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