1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-14 11:35:33 +02:00

[feature/oauth] Initial login_link ucp class

PHPBB3-11673
This commit is contained in:
Joseph Warner 2013-07-24 14:55:08 -04:00
parent 5843294813
commit 27ea03d3e0

View File

@ -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)
{
}
}