-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.php
87 lines (86 loc) · 3.11 KB
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
/*
* This array is based on the array used in HybridAuth's install.php
* It adds keys to the array to make it easier to look up display names in the user interface
*
*/
$HA_SOCIAL_CONNECT_PROVIDERS_CONFIG = array(
'Facebook' => ARRAY(
'label' => 'Facebook',
'provider_name' => 'Facebook',
'require_client_id' => TRUE,
'new_app_link' => 'https://www.facebook.com/developers/',
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_Facebook.html',
)
,
'Google' => ARRAY(
'label' => 'Google',
'provider_name' => 'Google',
'callback' => TRUE,
'require_client_id' => TRUE,
'new_app_link' => 'https://code.google.com/apis/console/',
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_Google.html',
)
,
'Twitter' => ARRAY(
'label' => 'Twitter',
'provider_name' => 'Twitter',
'new_app_link' => 'https://dev.twitter.com/apps',
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_Twitter.html',
)
,
'Yahoo' => ARRAY(
'label' => 'Yahoo',
'provider_name' => 'Yahoo!',
'new_app_link' => 'https://developer.apps.yahoo.com/dashboard/createKey.html',
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_Yahoo.html',
)
,
'Live' => ARRAY(
'label' => 'Live',
'provider_name' => 'Windows Live',
'require_client_id' => TRUE,
'new_app_link' => 'https://manage.dev.live.com/ApplicationOverview.aspx',
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_Live.html',
)
,
'MySpace' => ARRAY(
'label' => 'MySpace',
'provider_name' => 'MySpace',
'new_app_link' => 'http://developer.myspace.com/',
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_MySpace.html',
)
,
'Foursquare' => ARRAY(
'label' => 'Foursquare',
'provider_name' => 'Foursquare',
'require_client_id' => TRUE,
'callback' => TRUE,
'new_app_link' => 'https://www.foursquare.com/oauth/',
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_Foursquare.html',
)
,
'LinkedIn' => ARRAY(
'label' => 'LinkedIn',
'provider_name' => 'LinkedIn',
'new_app_link' => 'https://www.linkedin.com/secure/developer',
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_LinkedIn.html',
)
,
'OpenID' => ARRAY(
'label' => 'OpenID',
'provider_name' => 'OpenID',
'new_app_link' => NULL,
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_OpenID.html',
'extras' => array(
'url' => 'text',
),
)
,
'AOL' => ARRAY(
'label' => 'AOL',
'provider_name' => 'AOL',
'new_app_link' => NULL,
'userguide_section' => 'http://hybridauth.sourceforge.net/userguide/IDProvider_info_AOL.html',
)
);