added facebook auth

This commit is contained in:
JT Smith 2010-08-27 13:03:58 -05:00
parent 4da8638444
commit 61bd01b5f3
10 changed files with 415 additions and 1 deletions

View file

@ -0,0 +1,37 @@
package WebGUI::Macro::FacebookLogin;
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2010 Plain Black Corporation.
#-------------------------------------------------------------------
# Please read the legal notices (docs/legal.txt) and the license
# (docs/license.txt) that came with this distribution before using
# this software.
#-------------------------------------------------------------------
# http://www.plainblack.com info@plainblack.com
#-------------------------------------------------------------------
use strict;
=head1 NAME
Package WebGUI::Macro::FacebookLogin
=head1 DESCRIPTION
Works with the Facebook Auth plugin to allow users to log in using facebook.
=cut
#-------------------------------------------------------------------
sub process {
my $session = shift;
my $url = $session->url;
return sprintf '<a href="%s"><img src="%s" alt="login with Facebook" /></a>',
$url->page('op=auth;authType=Facebook;method=login'),
$url->extras('macro/FacebookLogin/login-button.png');
}
1;
#vim:ft=perl