aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/auth/provider_db.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-06-19 15:32:20 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-06-19 15:33:59 -0400
commit8214e6e8377b0858092e48aba3ba2a01994be47f (patch)
treecc810871a1a503e52cbcdb0bd09983f2eaabda52 /phpBB/includes/auth/provider_db.php
parentf4def220ce00a6be06857d5bd9f164473c0411c4 (diff)
downloadforums-8214e6e8377b0858092e48aba3ba2a01994be47f.tar
forums-8214e6e8377b0858092e48aba3ba2a01994be47f.tar.gz
forums-8214e6e8377b0858092e48aba3ba2a01994be47f.tar.bz2
forums-8214e6e8377b0858092e48aba3ba2a01994be47f.tar.xz
forums-8214e6e8377b0858092e48aba3ba2a01994be47f.zip
[feature/auth-refactor] Finish refactoring auth plugins
I believe that this commit should have final minimal changes needed to replace the old auth plugins with the refactored auth plugins. Added a few more elements to the interface based on the old auth plugins. Documentation is not complete and need works on these new elements. PHPBB3-9734
Diffstat (limited to 'phpBB/includes/auth/provider_db.php')
-rw-r--r--phpBB/includes/auth/provider_db.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/includes/auth/provider_db.php b/phpBB/includes/auth/provider_db.php
index df935fcd73..e24e701911 100644
--- a/phpBB/includes/auth/provider_db.php
+++ b/phpBB/includes/auth/provider_db.php
@@ -302,4 +302,14 @@ class phpbb_auth_provider_db implements phpbb_auth_provider_interface
{
return;
}
+
+ public function logout($data, $new_session)
+ {
+ return;
+ }
+
+ public function validate_session($user)
+ {
+ return;
+ }
}