missing SEE ALSO
[Business-OnlinePayment-Cardcom.git] / Cardcom.pm
index 57e9d14..de8f411 100644 (file)
@@ -5,11 +5,11 @@ use Carp;
 use Tie::IxHash;
 use Business::OnlinePayment 3;
 use Business::OnlinePayment::HTTPS 0.03;
-use Data::Dumper;
+#use Data::Dumper;
 use vars qw($VERSION $DEBUG @ISA);
 
 @ISA = qw(Business::OnlinePayment::HTTPS);
-$VERSION = '0.01';
+$VERSION = '0.02';
 $DEBUG = 0;
 
 sub set_defaults {
@@ -27,7 +27,7 @@ sub set_defaults {
 sub submit {
     my($self) = @_;
 
-    warn Dumper($self) if $DEBUG > 1;
+    #warn Dumper($self) if $DEBUG > 1;
 
     $self->remap_fields(
         card_number => 'cardnumber',
@@ -127,7 +127,7 @@ sub _info {
     'gateway_name'      => 'Cardcom',
     'gateway_url'       => 'http://www.cardcom.co.il',
     'module_version'    => $VERSION,
-    'support_types'     => [ 'CC' ],
+    'supported_types'   => [ 'CC' ],
     'token_support'     => 0, # well technically the gateway supports it, but we haven't implemented it
     'test_transaction'  => 1, 
     'supported_actions' => [ 
@@ -153,12 +153,11 @@ Business::OnlinePayment::Cardcom - Cardcom backend module for Business::OnlinePa
   # One step transaction, the simple case.
   ####
 
-  my $tx = new Business::OnlinePayment("Cardcom");
+  my $tx = new Business::OnlinePayment("Cardcom", 'TerminalNumber'=>1234 );
   $tx->content(
       type           => 'CC',
       login          => 'Cardcom Username',
       password       => 'Cardcom Password',
-      terminalnumber => 'Cardcom Terminal Number',
       action         => 'Normal Authorization',
       amount         => '49.95',
       card_number    => '4005550000000019',
@@ -177,7 +176,7 @@ Business::OnlinePayment::Cardcom - Cardcom backend module for Business::OnlinePa
 
 =head2 CC
 
-Content required: type, login, password, action, amount, card_number, expiration, terminalnumber.
+Content required: type, login, password, action, amount, card_number, expiration.
 
 =head1 PREREQUISITES
 
@@ -189,10 +188,22 @@ For detailed information see L<Business::OnlinePayment>.
 
 =head1 AUTHOR
 
-Erik Levinson <levinse@freeside.biz>
+Original Author: Erik Levinson
+
+Current Maintainer: Ivan Kohler C<< <ivan-cardcom@freeside.biz> >>
 
 =head1 SEE ALSO
 
 perl(1). L<Business::OnlinePayment>.
 
+=head1 ADVERTISEMENT
+
+Need a complete, open-source back-office and customer self-service solution?
+The Freeside software includes support for credit card and electronic check
+processing, integrated trouble ticketing, and customer signup and self-service
+web interfaces.
+
+http://freeside.biz/freeside/
+
+
 =cut