aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-08-02 14:05:09 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-08-02 14:05:44 -0400
commit245e71e4e20b8d4ec80fc5e059dc12db51d10651 (patch)
treee77402c16215a38b0a631b2aedde4463d73e6df1 /phpBB/includes/functions.php
parent381e7c347b0d7cfc0f02d677aa61b92701606504 (diff)
downloadforums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.tar
forums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.tar.gz
forums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.tar.bz2
forums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.tar.xz
forums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.zip
[feature/oauth] Add get_login_data to the auth_provider_interface
PHPBB3-11673
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 02cdfd7ed1..79391aba56 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -3367,6 +3367,26 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa
$s_hidden_fields['credential'] = $credential;
}
+ $auth_provider = $phpbb_container->get('auth.provider.' . $config['auth_method']);
+
+ $auth_provider_data = $auth_provider->get_login_data();
+ if ($auth_provider_data)
+ {
+ if (isset($auth_provider_data['VARS']))
+ {
+ $template->assign_vars($auth_provider_data['VARS']);
+ }
+
+ if (isset($auth_provider_data['BLOCK_VAR_NAME']))
+ {
+ $template->assign_block_vars($auth_provider_data['BLOCK_VAR_NAME'], $auth_provider_data['BLOCK_VARS']);
+ }
+
+ $template->assign_vars(array(
+ 'PROVIDER_TEMPLATE_FILE' => $auth_provider_data['TEMPLATE_FILE'],
+ ));
+ }
+
$oauth_login = ($config['auth_method'] == 'oauth') ? true : false;
if ($oauth_login)