Gazelle/sections/donate/index.php

22 lines
513 B
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
//Module mini-config
include(SERVER_ROOT.'/sections/donate/config.php');
if (!isset($_REQUEST['action'])) {
include(SERVER_ROOT.'/sections/donate/donate.php');
} else {
switch($_REQUEST['action']) {
case 'ipn': // Paypal hits this page when a donation is received
include(SERVER_ROOT.'/sections/donate/ipn.php');
break;
case 'complete':
include(SERVER_ROOT.'/sections/donate/complete.php');
break;
case 'cancel':
include(SERVER_ROOT.'/sections/donate/cancel.php');
break;
}
}
?>