first commit

This commit is contained in:
2019-05-31 11:26:35 -04:00
commit c403ba19f7
5075 changed files with 965209 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
class Paypal extends Users_Controller {
public function index() {
$data = $this->getSessionArray();
if (!isset($_SESSION['username']) or $_SESSION['username'] == '') {
redirect(home);
} else {
}
}
public function retn() {
$data = $this->getSessionArray();
}
public function canc() {
$data = $this->getSessionArray();
redirect('/member/addfund');
}
public function ipn() {
$data = $this->getSessionArray();
}
}