ok
Direktori : /proc/self/root/home2/selectio/www/bharath/application/controllers/students/ |
Current File : //proc/self/root/home2/selectio/www/bharath/application/controllers/students/Stripe.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class Stripe extends Student_Controller { public $setting = ""; function __construct() { parent::__construct(); $this->load->library('stripe_payment'); $this->setting = $this->setting_model->get(); } public function index() { $this->session->set_userdata('top_menu', 'Library'); $this->session->set_userdata('sub_menu', 'book/index'); $data = array(); $data['params'] = $this->session->userdata('params'); $data['setting'] = $this->setting; $this->load->view('student/stripe', $data); } public function complete() { $student_fees_master_id = $this->input->post('student_fees_master_id'); $fee_groups_feetype_id = $this->input->post('fee_groups_feetype_id'); $student_id = $this->input->post('student_id'); $stripeToken = $this->input->post('stripeToken'); $stripeTokenType = $this->input->post('stripeTokenType'); $stripeEmail = $this->input->post('stripeEmail'); $data = $this->input->post(); $data['currency'] = 'USD'; $response = $this->stripe_payment->payment($data); if ($response->isSuccessful()) { $transactionid = $response->getTransactionReference(); $response = $response->getData(); if ($response['status'] == 'succeeded') { $params = $this->session->userdata('params'); $payment_data['transactionid'] = $transactionid; $json_array = array( 'amount' => ($response['amount'] / 100), 'date' => date('Y-m-d'), 'amount_discount' => 0, 'amount_fine' => 0, 'description' => "Online fees deposit through Stripe TXN ID: " . $transactionid, 'received_by' => '', 'payment_mode' => 'Stripe', ); $data = array( 'student_fees_master_id' => $params['student_fees_master_id'], 'fee_groups_feetype_id' => $params['fee_groups_feetype_id'], 'amount_detail' => $json_array ); $send_to = $params['guardian_phone']; $inserted_id = $this->studentfeemaster_model->fee_deposit($data, $send_to); if ($inserted_id) { $invoice_detail = json_decode($inserted_id); redirect(base_url("students/payment/successinvoice/" . $invoice_detail->invoice_id . "/" . $invoice_detail->sub_invoice_id)); } else { //failed } redirect(site_url('user/user/dashboard')); } } elseif ($response->isRedirect()) { $response->redirect(); } else { redirect(site_url('user/user/dashboard')); } } } ?>