mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[feature/auth-refactor] Provider Interface Skeleton
Creates a skeleton of the authentication provider interface. PHPBB3-9734
This commit is contained in:
parent
80747a0530
commit
e2c049c997
1 changed files with 32 additions and 0 deletions
32
phpBB/includes/auth/provider_interface.php
Normal file
32
phpBB/includes/auth/provider_interface.php
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
<?
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
* @copyright (c) 2013 phpBB Group
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ignore
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The interface authentication provider classes have to implement.
|
||||||
|
*
|
||||||
|
* @package auth
|
||||||
|
*/
|
||||||
|
class phpbb_auth_provider_interface
|
||||||
|
{
|
||||||
|
public function init();
|
||||||
|
|
||||||
|
public function login();
|
||||||
|
|
||||||
|
public function autologin();
|
||||||
|
|
||||||
|
public function acp();
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue