2006-05-17 08:00:12 +02:00
|
|
|
<?php
|
2008-03-15 18:27:36 +01:00
|
|
|
/**
|
2016-03-06 21:47:10 +01:00
|
|
|
* EGroupware API - Authentication
|
2008-05-31 08:25:04 +02:00
|
|
|
*
|
2008-03-15 18:27:36 +01:00
|
|
|
* @link http://www.egroupware.org
|
2010-01-28 05:22:37 +01:00
|
|
|
* @author Ralf Becker <ralfbecker@outdoor-training.de>
|
2008-03-15 18:27:36 +01:00
|
|
|
* @author Miles Lott <milos@groupwhere.org>
|
2008-05-31 08:25:04 +02:00
|
|
|
* @copyright 2004 by Miles Lott <milos@groupwhere.org>
|
2008-03-15 18:27:36 +01:00
|
|
|
* @license http://opensource.org/licenses/lgpl-license.php LGPL - GNU Lesser General Public License
|
|
|
|
* @package api
|
|
|
|
* @subpackage authentication
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2004-01-18 22:12:53 +01:00
|
|
|
|
2016-03-06 21:47:10 +01:00
|
|
|
use EGroupware\Api;
|
2004-01-18 22:12:53 +01:00
|
|
|
|
2008-03-15 18:27:36 +01:00
|
|
|
/**
|
2016-03-06 21:47:10 +01:00
|
|
|
* Authentication
|
2008-05-31 08:25:04 +02:00
|
|
|
*
|
2016-03-06 21:47:10 +01:00
|
|
|
* @deprecated use Api\Auth
|
2008-03-15 18:27:36 +01:00
|
|
|
*/
|
2016-03-06 21:47:10 +01:00
|
|
|
class auth extends Api\Auth
|
2008-03-15 18:27:36 +01:00
|
|
|
{
|
2015-07-01 19:51:56 +02:00
|
|
|
/**
|
|
|
|
* Retired password check method called all over the place
|
|
|
|
*
|
|
|
|
* @deprecated use check_password_change
|
|
|
|
*/
|
|
|
|
static function check_password_age()
|
|
|
|
{
|
|
|
|
return true; // no change
|
|
|
|
}
|
2008-03-15 18:27:36 +01:00
|
|
|
}
|
2010-01-28 05:22:37 +01:00
|
|
|
|
|
|
|
/**
|
2016-03-06 21:47:10 +01:00
|
|
|
* @deprecated use Api\Auth\Backend
|
2010-01-28 05:22:37 +01:00
|
|
|
*/
|
2016-03-06 21:47:10 +01:00
|
|
|
interface auth_backend extends Api\Auth\Backend {}
|
2010-05-13 12:39:48 +02:00
|
|
|
|
2016-03-06 21:47:10 +01:00
|
|
|
/**
|
|
|
|
* @deprecated use Api\Auth\Fallback
|
|
|
|
*/
|
|
|
|
class auth_fallback extends Api\Auth\Fallback {}
|