1<?php
2
3// default providers order
4
5$fa_order_large = array('google','aol','yahoo');
6$fa_order_small = array(); // will be filled alphabetically with all except included in $order_large
7
8// if 'url' contains {username} an input box for it will be shown
9
10// general openid
11$fa_providers['openid']['name'] = 'OpenID';
12$fa_providers['openid']['url'] = null;
13$fa_providers['openid']['type'] = 'openid';
14
15// built-in providers in alphabetical order
16$fa_providers['aol']['name'] = 'AOL';
17$fa_providers['aol']['url'] = 'http://openid.aol.com/{username}';
18$fa_providers['aol']['type'] = 'openid';
19
20$fa_providers['blogger']['name'] = 'Blogger';
21$fa_providers['blogger']['url'] = 'http://{username}.blogspot.com/';
22$fa_providers['blogger']['type'] = 'openid';
23
24$fa_providers['claimid']['name'] = 'ClaimID';
25$fa_providers['claimid']['url'] = 'http://claimid.com/{username}';
26$fa_providers['claimid']['type'] = 'openid';
27
28$fa_providers['clickpass']['name'] = 'ClickPass';
29$fa_providers['clickpass']['url'] = 'http://clickpass.com/public/{username}';
30$fa_providers['clickpass']['type'] = 'openid';
31
32$fa_providers['google']['name'] = 'Google';
33$fa_providers['google']['url'] = 'https://www.google.com/accounts/o8/id';
34$fa_providers['google']['type'] = 'openid';
35
36$fa_providers['google_profile']['name'] = 'Google Profile';
37$fa_providers['google_profile']['url'] = 'http://www.google.com/profiles/{username}';
38$fa_providers['google_profile']['type'] = 'openid';
39
40$fa_providers['livejournal']['name'] = 'LiveJournal';
41$fa_providers['livejournal']['url'] = 'http://{username}.livejournal.com/';
42$fa_providers['livejournal']['type'] = 'openid';
43
44$fa_providers['myopenid']['name'] = 'MyOpenID';
45$fa_providers['myopenid']['url'] = 'http://{username}.myopenid.com/';
46$fa_providers['myopenid']['type'] = 'openid';
47
48$fa_providers['stackexchange']['name'] = 'StackExchange';
49$fa_providers['stackexchange']['url'] = 'https://openid.stackexchange.com/';
50$fa_providers['stackexchange']['type'] = 'openid';
51
52$fa_providers['technorati']['name'] = 'Technorati';
53$fa_providers['technorati']['url'] = 'http://technorati.com/people/technorati/{username}/';
54$fa_providers['technorati']['type'] = 'openid';
55
56$fa_providers['verisign']['name'] = 'Verisign';
57$fa_providers['verisign']['url'] = 'http://{username}.pip.verisignlabs.com/';
58$fa_providers['verisign']['type'] = 'openid';
59
60$fa_providers['wordpress']['name'] = 'Wordpress';
61$fa_providers['wordpress']['url'] = 'http://{username}.wordpress.com/';
62$fa_providers['wordpress']['type'] = 'openid';
63
64$fa_providers['yahoo']['name'] = 'Yahoo';
65$fa_providers['yahoo']['url'] = 'http://me.yahoo.com/';
66$fa_providers['yahoo']['type'] = 'openid';
67