added legal section
This commit is contained in:
parent
22dde02776
commit
69a07bb672
7 changed files with 92 additions and 16 deletions
|
|
@ -1,5 +1,19 @@
|
||||||
package WebGUI::Shop::Pay;
|
package WebGUI::Shop::Pay;
|
||||||
|
|
||||||
|
=head1 LEGAL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
WebGUI is Copyright 2001-2009 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
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
use Class::InsideOut qw{ :std };
|
use Class::InsideOut qw{ :std };
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,19 @@
|
||||||
package WebGUI::Shop::PayDriver;
|
package WebGUI::Shop::PayDriver;
|
||||||
|
|
||||||
|
=head1 LEGAL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
WebGUI is Copyright 2001-2009 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
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
use Class::InsideOut qw{ :std };
|
use Class::InsideOut qw{ :std };
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,19 @@
|
||||||
package WebGUI::Shop::PayDriver::Cash;
|
package WebGUI::Shop::PayDriver::Cash;
|
||||||
|
|
||||||
|
=head1 LEGAL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
WebGUI is Copyright 2001-2009 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
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
use WebGUI::Shop::PayDriver;
|
use WebGUI::Shop::PayDriver;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,19 @@
|
||||||
package WebGUI::Shop::PayDriver::ITransact;
|
package WebGUI::Shop::PayDriver::ITransact;
|
||||||
|
|
||||||
|
=head1 LEGAL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
WebGUI is Copyright 2001-2009 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
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use XML::Simple;
|
use XML::Simple;
|
||||||
use Data::Dumper;
|
use Data::Dumper;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,19 @@
|
||||||
package WebGUI::Shop::PayDriver::Ogone;
|
package WebGUI::Shop::PayDriver::Ogone;
|
||||||
|
|
||||||
|
=head1 LEGAL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
WebGUI is Copyright 2001-2009 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
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
use WebGUI::Shop::PayDriver;
|
use WebGUI::Shop::PayDriver;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,19 @@
|
||||||
package WebGUI::Shop::PayDriver::PayPal::ExpressCheckout;
|
package WebGUI::Shop::PayDriver::PayPal::ExpressCheckout;
|
||||||
|
|
||||||
|
=head1 LEGAL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
WebGUI is Copyright 2001-2009 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
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use base qw/WebGUI::Shop::PayDriver/;
|
use base qw/WebGUI::Shop::PayDriver/;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,15 @@
|
||||||
package WebGUI::Shop::PayDriver::PayPal::PayPalStd;
|
package WebGUI::Shop::PayDriver::PayPal::PayPalStd;
|
||||||
|
|
||||||
=head1 LEGAL
|
=head1 LEGAL
|
||||||
-------------------------------------------------------------------
|
|
||||||
PayPal Standard payment driver for WebGUI.
|
|
||||||
Copyright (C) 2009 Plain Black Corporation.
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
This program is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the GNU General Public License
|
|
||||||
as published by the Free Software Foundation; either version 2
|
|
||||||
of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
-------------------------------------------------------------------
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
WebGUI is Copyright 2001-2009 Plain Black Corporation.
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
-------------------------------------------------------------------
|
||||||
GNU General Public License for more details.
|
Please read the legal notices (docs/legal.txt) and the license
|
||||||
|
(docs/license.txt) that came with this distribution before using
|
||||||
You should have received a copy of the GNU General Public License along
|
this software.
|
||||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
-------------------------------------------------------------------
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
http://www.plainblack.com info@plainblack.com
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue