aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-06-17 16:11:23 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-06-17 16:11:23 -0400
commite2c049c997c1829f4f71100bdbdbba9bf72b8868 (patch)
tree11e91cb30c61127507c529c7d7c7d6e9d5dc67e7 /phpBB
parent80747a053073582fd3bcdcfff405cebcae52945f (diff)
downloadforums-e2c049c997c1829f4f71100bdbdbba9bf72b8868.tar
forums-e2c049c997c1829f4f71100bdbdbba9bf72b8868.tar.gz
forums-e2c049c997c1829f4f71100bdbdbba9bf72b8868.tar.bz2
forums-e2c049c997c1829f4f71100bdbdbba9bf72b8868.tar.xz
forums-e2c049c997c1829f4f71100bdbdbba9bf72b8868.zip
[feature/auth-refactor] Provider Interface Skeleton
Creates a skeleton of the authentication provider interface. PHPBB3-9734
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/auth/provider_interface.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/includes/auth/provider_interface.php b/phpBB/includes/auth/provider_interface.php
new file mode 100644
index 0000000000..ac7bb311a3
--- /dev/null
+++ b/phpBB/includes/auth/provider_interface.php
@@ -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();
+}