aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_auth_link.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-08-05 15:34:26 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-08-05 15:38:03 -0400
commitbaa3a750c4cd2112202c40b39d1f3fdf5b05bdb1 (patch)
treecfaafa1b039ce07fe9e18e685947c88e0689ed8c /phpBB/includes/ucp/ucp_auth_link.php
parent3cbb97316066b606548af5d24b4fe2199533cffe (diff)
downloadforums-baa3a750c4cd2112202c40b39d1f3fdf5b05bdb1.tar
forums-baa3a750c4cd2112202c40b39d1f3fdf5b05bdb1.tar.gz
forums-baa3a750c4cd2112202c40b39d1f3fdf5b05bdb1.tar.bz2
forums-baa3a750c4cd2112202c40b39d1f3fdf5b05bdb1.tar.xz
forums-baa3a750c4cd2112202c40b39d1f3fdf5b05bdb1.zip
[feature/oauth] Start general auth linking page
PHPBB3-11673
Diffstat (limited to 'phpBB/includes/ucp/ucp_auth_link.php')
-rw-r--r--phpBB/includes/ucp/ucp_auth_link.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/ucp_auth_link.php b/phpBB/includes/ucp/ucp_auth_link.php
new file mode 100644
index 0000000000..266273cff8
--- /dev/null
+++ b/phpBB/includes/ucp/ucp_auth_link.php
@@ -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';
+ }
+}