diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-24 14:55:08 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-24 14:55:29 -0400 |
commit | 27ea03d3e098ca53f9f49da5024f7d7c64989153 (patch) | |
tree | 7723f9c06e1272c6325be44743cdf2b5cfbcc748 /phpBB/includes/ucp/ucp_login_link.php | |
parent | 5843294813fc654a37e13e9da357e7515a41968a (diff) | |
download | forums-27ea03d3e098ca53f9f49da5024f7d7c64989153.tar forums-27ea03d3e098ca53f9f49da5024f7d7c64989153.tar.gz forums-27ea03d3e098ca53f9f49da5024f7d7c64989153.tar.bz2 forums-27ea03d3e098ca53f9f49da5024f7d7c64989153.tar.xz forums-27ea03d3e098ca53f9f49da5024f7d7c64989153.zip |
[feature/oauth] Initial login_link ucp class
PHPBB3-11673
Diffstat (limited to 'phpBB/includes/ucp/ucp_login_link.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_login_link.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/ucp_login_link.php b/phpBB/includes/ucp/ucp_login_link.php new file mode 100644 index 0000000000..719dec5ea0 --- /dev/null +++ b/phpBB/includes/ucp/ucp_login_link.php @@ -0,0 +1,32 @@ +<?php +/** +* +* @package ucp +* @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; +} + +/** +* ucp_login_link +* Allows users of external accounts link those accounts to their phpBB accounts +* during an attempted login. +* @package ucp +*/ +class ucp_login_link +{ + var $u_action; + + function main($id, $mode) + { + + } +}
\ No newline at end of file |