From e6d47212cc54c0d4aaab2182a06b1706e9b07953 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Sat, 4 Jul 2009 20:49:47 +0000 Subject: [PATCH] Add missing POD to PayPalStd. --- lib/WebGUI/Shop/PayDriver/PayPal/PayPalStd.pm | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/lib/WebGUI/Shop/PayDriver/PayPal/PayPalStd.pm b/lib/WebGUI/Shop/PayDriver/PayPal/PayPalStd.pm index e36a69549..a37f6946c 100644 --- a/lib/WebGUI/Shop/PayDriver/PayPal/PayPalStd.pm +++ b/lib/WebGUI/Shop/PayDriver/PayPal/PayPalStd.pm @@ -62,7 +62,7 @@ sub handlesRecurring { #------------------------------------------------------------------- -=head2 canCheckOutCart ( ) +=head2 canCheckoutCart ( ) Returns whether the cart can be checked out by this plugin. @@ -140,6 +140,13 @@ sub definition { } #------------------------------------------------------------------- + +=head2 getButton + +Extends the base class to add a user configurable button image. + +=cut + sub getButton { my $self = shift; my $session = $self->session; @@ -305,6 +312,13 @@ sub processTransaction { } #------------------------------------------------------------------- + +=head2 www_cancelTransaction + +Cancels the transaction defined by the C form variable. + +=cut + sub www_cancelTransaction { my $self = shift; my $session = $self->session; @@ -328,6 +342,13 @@ sub www_cancelTransaction { } #------------------------------------------------------------------- + +=head2 www_completeTransaction + +Finishes the transaction for this driver. + +=cut + sub www_completeTransaction { my $self = shift; my $session = $self->session; @@ -435,6 +456,13 @@ sub www_edit { } #------------------------------------------------------------------- + +=head2 www_pay + +Web facing wrapper method for C. + +=cut + sub www_pay { my $self = shift; my $session = $self->session;