[feature/oauth] Last five oauth services

PHPBB3-11673
This commit is contained in:
Joseph Warner 2013-07-14 15:35:12 -04:00
parent 947aa2b6b4
commit 0ebff82ad3
5 changed files with 130 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<?php
/**
*
* @package auth
* @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;
}
/**
* Amazon OAuth service
*
* @package auth
*/
class phpbb_auth_provider_oauth_service_amazon extends phpbb_auth_provider_oauth_service_base
{
}

View file

@ -0,0 +1,26 @@
<?php
/**
*
* @package auth
* @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;
}
/**
* Dropbox OAuth service
*
* @package auth
*/
class phpbb_auth_provider_oauth_service_dropbox extends phpbb_auth_provider_oauth_service_base
{
}

View file

@ -0,0 +1,26 @@
<?php
/**
*
* @package auth
* @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;
}
/**
* Paypal OAuth service
*
* @package auth
*/
class phpbb_auth_provider_oauth_service_paypal extends phpbb_auth_provider_oauth_service_base
{
}

View file

@ -0,0 +1,26 @@
<?php
/**
*
* @package auth
* @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;
}
/**
* VKontakte OAuth service
*
* @package auth
*/
class phpbb_auth_provider_oauth_service_vkontakte extends phpbb_auth_provider_oauth_service_base
{
}

View file

@ -0,0 +1,26 @@
<?php
/**
*
* @package auth
* @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;
}
/**
* Yammer OAuth service
*
* @package auth
*/
class phpbb_auth_provider_oauth_service_yammer extends phpbb_auth_provider_oauth_service_base
{
}