This commit is contained in:
2022-04-21 18:58:31 -04:00
parent 2e61b070ba
commit 7d2373a080
6 changed files with 228 additions and 90 deletions
+16 -2
View File
@@ -13,12 +13,26 @@ class Paymnt extends Users_Controller {
}
public function paymus() {
$data = $this->getSessionArray();
$data['card_table_result'] = $this->cardListData(4)['card_table_result'];
$this->RenderUserPage('users/view_startpaymus', $data);
$data['page_title'] ="Deposit Funds";
// $this->RenderUserPage('users/view_startpaymus', $data);
$this->RenderUserPage('users/view_selectpay', $data);
}
public function paycc() {
$data = $this->getSessionArray();
$data['card_table_result'] = $this->cardListData(4)['card_table_result'];
$data['page_title'] ="Deposit Funds";
$this->RenderUserPage('users/view_startpaymus', $data);
}
public function paypal() {
$data = $this->getSessionArray();
$data['card_table_result'] = $this->cardListData(4)['card_table_result'];
$data['page_title'] ="Deposit Funds";
$this->RenderUserPage('users/view_paypal', $data);
}
private function cardListData($limit){