1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-26 04:52:36 +01:00
Joseph Warner 247a002a14 [feature/oauth] Add constructors
PHPBB3-11673
2013-07-14 17:24:01 -04:00

63 lines
891 B
PHP

<?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;
}
/**
* LinkedIn OAuth service
*
* @package auth
*/
class phpbb_auth_provider_oauth_service_linkedin extends phpbb_auth_provider_oauth_service_base
{
/**
* phpBB config
*
* @var phpbb_config
*/
protected $config;
/**
* Constructor
*
* @param phpbb_config $config
*/
public function __construct(phpbb_config $config)
{
$this->config = $config;
}
/**
* {@inheritdoc}
*/
public function get_auth_scope()
{
return array(
'r_basicprofile',
);
}
/**
* {@inheritdoc}
*/
public function get_service_credentials()
{
return array(
'key' => $this->config['auth_oauth_linkedin_key'],
'secret' => $this->config['auth_oauth_linkedin_secret'],
);
}
}