mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-15 03:55:23 +02:00
[feature/oauth] Initial login_link ucp class
PHPBB3-11673
This commit is contained in:
parent
5843294813
commit
27ea03d3e0
32
phpBB/includes/ucp/ucp_login_link.php
Normal file
32
phpBB/includes/ucp/ucp_login_link.php
Normal 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)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user