File modules/cms/auth/SingleSignonAuth.class.php

Last commit: Sun Nov 29 21:46:57 2020 +0100	Jan Dankert	Auth modules should only use the Auth::STATUS_* constants as return value.
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
Download modules/cms/auth/SingleSignonAuth.class.php
History Sun, 29 Nov 2020 21:46:57 +0100 Jan Dankert Auth modules should only use the Auth::STATUS_* constants as return value. Mon, 16 Nov 2020 13:21:57 +0100 Jan Dankert Code cleanup: Externalize calling the auth modules. Sun, 23 Feb 2020 04:49:34 +0100 Jan Dankert Refactoring with Namespaces for the cms modules, part 2. Sun, 23 Feb 2020 04:01:30 +0100 Jan Dankert Refactoring with Namespaces for the cms modules, part 1: moving.