Skip to content

Commit

Permalink
fixup! Add stripe donate form
Browse files Browse the repository at this point in the history
  • Loading branch information
ajparsons committed Apr 2, 2024
1 parent 5229a86 commit 0fd154c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@
# e.g. 'donate_monthly_10'.
$payment_amounts = array(
'monthly' => array(
'2' => '£2',
'5' => '£5',
'10' => '£10',
'25' => '£25',
),
'annually' => array(
'10' => '£10',
'50' => '£50',
'100' => '£100',
),
'one-off' => array(
'20' => '£20',
'10' => '£10',
'25' => '£25',
'50' => '£50',
'100' => '£100',
),
);

$default_amounts = array(
'monthly' => '10',
'monthly' => '5',
'annually' => '10',
'one-off' => '50',
'one-off' => '25',
);

$default_type = 'annually';
Expand Down

0 comments on commit 0fd154c

Please sign in to comment.