Seditio Source
Root |
./othercms/elxis_5.3_atlas_rev2452/components/com_user/auth/auth.interface.php
<?php
/**
* @version        $Id: auth.interface.php 964 2012-03-11 13:30:48Z datahell $
* @package        Elxis
* @subpackage    Component User / Authentication
* @copyright    Copyright (c) 2006-2012 Elxis CMS (http://www.elxis.org). All rights reserved.
* @license        Elxis Public License ( http://www.elxis.org/elxis-public-license.html )
* @author        Elxis Team ( http://www.elxis.org )
* @description     Elxis CMS is free software. Read the license for copyright notices and details
*/

defined('_ELXIS_') or die ('Direct access to this location is not allowed');


interface
authMethod {

    public function
__construct($params);
    public function
authenticate(&$response, $options);
    public function
loginForm();
    public function
runTask($etask);
    public function
logout();

}

?>