Mercurial > laserkard
view paypal/make.pl @ 4:c96cb4e773e5 laserkard
[svn r5] fully functional website.
author | rlm |
---|---|
date | Fri, 01 Jan 2010 01:19:49 -0500 |
parents | |
children | 116b15d3d68c |
line wrap: on
line source
1 use generate_paylists;3 {#classic_acrylic_clear4 &paylist5 (6 TITLE => "Clarity LaserKard --- Classic Style",7 NAME => 'classic_acrylic_clear',9 FIELDS => ["Line 1", "Line 2","Line 3","Line 4","Line 5","Side"],10 DEFAULTS => ['jbond@mi6.co.uk','123.456.7890','James Bond','MI6','Secret Agent','http://www.jamesbond.com'],12 COSTS_NAMES => ['40 cards -- $125', '3 cards -- $15'],13 COSTS_CODE => ['40 cards @125.00', '3 cards @15.00'],14 INITIAL_PRICE => '$125.00',16 ADD_PENNY => 0,17 );18 }21 {#big_acrylic_clear22 &paylist23 (24 TITLE => "Clarity LaserKard --- BIG Style",25 NAME => 'big_acrylic_clear',27 FIELDS => ["Line 1", "Line 2"],28 DEFAULTS => ['James Bond','jbond@mi6.co.uk'],30 COSTS_NAMES => ['40 cards -- $125', '3 cards -- $15'],31 COSTS_CODE => ['40 cards @125.00', '3 cards @15.00'],32 INITIAL_PRICE => '$125.00',34 ADD_PENNY => 1,35 );36 }38 {#basic_acrylic_clear39 &paylist40 (41 TITLE => "Clarity LaserKard --- Basic Style",42 NAME => 'basic_acrylic_clear',44 FIELDS => ["Line 1", "Line 2","Line 3","Line 4"],45 DEFAULTS => ['James Bond','MI6','Secret Agent','jbond@mi6.co.uk'],47 COSTS_NAMES => ['40 cards -- $125', '3 cards -- $15'],48 COSTS_CODE => ['40 cards @125.00', '3 cards @15.00'],49 INITIAL_PRICE => '$125.00',51 ADD_PENNY => 0,52 );53 }55 {#lines_acrylic_clear56 &paylist57 (58 TITLE => "Clarity LaserKard --- Lines Style",59 NAME => 'lines_acrylic_clear',61 FIELDS => ["Line 1", "Line 2","Line 3","Line 4","Line 5","Line 6"],62 DEFAULTS => ['James Bond','Secret Agent','MI6','123.456.7890','jbond@domain.com','http://www.domain.com'],64 COSTS_NAMES => ['40 cards -- $125', '3 cards -- $15'],65 COSTS_CODE => ['40 cards @125.00', '3 cards @15.00'],66 INITIAL_PRICE => '$125.00',68 ADD_PENNY => 0,69 );70 }