mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[feature/oauth] Start general auth linking page
PHPBB3-11673
This commit is contained in:
parent
3cbb973160
commit
baa3a750c4
3 changed files with 31 additions and 0 deletions
27
phpBB/includes/ucp/ucp_auth_link.php
Normal file
27
phpBB/includes/ucp/ucp_auth_link.php
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package notifications
|
||||||
|
* @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;
|
||||||
|
}
|
||||||
|
|
||||||
|
class ucp_auth_link
|
||||||
|
{
|
||||||
|
public $u_action;
|
||||||
|
|
||||||
|
public function main($id, $mode)
|
||||||
|
{
|
||||||
|
$this->tpl_name = 'ucp_auth_link';
|
||||||
|
$this->page_title = 'UCP_AUTH_LINK';
|
||||||
|
}
|
||||||
|
}
|
|
@ -479,6 +479,7 @@ $lang = array_merge($lang, array(
|
||||||
'UCP_ADMIN_ACTIVATE' => 'Please note that you will need to enter a valid email address before your account is activated. The administrator will review your account and if approved you will receive an email at the address you specified.',
|
'UCP_ADMIN_ACTIVATE' => 'Please note that you will need to enter a valid email address before your account is activated. The administrator will review your account and if approved you will receive an email at the address you specified.',
|
||||||
'UCP_AIM' => 'AOL Instant Messenger',
|
'UCP_AIM' => 'AOL Instant Messenger',
|
||||||
'UCP_ATTACHMENTS' => 'Attachments',
|
'UCP_ATTACHMENTS' => 'Attachments',
|
||||||
|
'UCP_AUTH_LINK' => 'Link an external account',
|
||||||
'UCP_COPPA_BEFORE' => 'Before %s',
|
'UCP_COPPA_BEFORE' => 'Before %s',
|
||||||
'UCP_COPPA_ON_AFTER' => 'On or after %s',
|
'UCP_COPPA_ON_AFTER' => 'On or after %s',
|
||||||
'UCP_EMAIL_ACTIVATE' => 'Please note that you will need to enter a valid email address before your account is activated. You will receive an email at the address you provide that contains an account activation link.',
|
'UCP_EMAIL_ACTIVATE' => 'Please note that you will need to enter a valid email address before your account is activated. You will receive an email at the address you provide that contains an account activation link.',
|
||||||
|
|
3
phpBB/styles/prosilver/template/ucp_auth_link.html
Normal file
3
phpBB/styles/prosilver/template/ucp_auth_link.html
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<!-- INCLUDE overall_header.html -->
|
||||||
|
|
||||||
|
<!-- INCLUDE overall_footer.html -->
|
Loading…
Add table
Reference in a new issue