30 lines
552 B
PHP
30 lines
552 B
PHP
<?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();
|
|
}
|
|
|
|
}
|