Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php defined("\x42\x41\x53\x45\120\x41\x54\110") or die("\x4e\x6f\40\x64\x69\x72\x65\x6..

Decoded Output download

<?php 
 defined("BASEPATH") or die("No direct script access allowed"); class Customers extends MY_Controller { public function __construct() { parent::__construct(); $this->load_global(); $this->load->model("customers_model", "customers"); } public function index() { $this->permission_check("customers_view"); $data = $this->data; $data["page_title"] = $this->lang->line("customers_list"); $this->load->view("customers-view", $data); } public function add() { $this->permission_check("customers_add"); $data = $this->data; $data["page_title"] = $this->lang->line("customers"); $this->load->view("customers", $data); } public function newcustomers() { $this->form_validation->set_rules("customer_name", "Customer Name", "trim|required"); if ($this->form_validation->run() == TRUE) { $result = $this->customers->verify_and_save(); echo $result; } else { echo "Please Fill Compulsory(* marked) Fields."; } } public function update($id) { $this->permission_check("customers_edit"); $data = $this->data; $result = $this->customers->get_details($id, $data); $data = array_merge($data, $result); $data["page_title"] = $this->lang->line("customers"); $this->load->view("customers", $data); } public function update_customers() { $this->form_validation->set_rules("customer_name", "Customer Name", "trim|required"); if ($this->form_validation->run() == TRUE) { $result = $this->customers->update_customers(); echo $result; } else { echo "Please Fill Compulsory(* marked) Fields."; } } public function show_total_customer_paid_amount($customer_id) { return $this->db->select("coalesce(sum(paid_amount),0) as tot")->where("customer_id", $customer_id)->get("db_sales")->row()->tot; } public function ajax_list() { $list = $this->customers->get_datatables(); $data = array(); $no = $_POST["start"]; foreach ($list as $customers) { $no++; $row = array(); $disable = $customers->id == 1 ? "disabled" : ''; if ($customers->id == 1) { $row[] = "<span class="text-blue">NA</span>"; } else { $row[] = "<input type="checkbox" name="checkbox[]" " . $disable . " value=" . $customers->id . " class="checkbox column_checkbox" >"; } $row[] = $customers->customer_code; $row[] = $customers->customer_name; $row[] = $customers->mobile; $type_id = $customers->type_id; if ($type_id > 0) { $row[] = $this->db->query("SELECT type_name FROM db_types where id = '{$type_id}'")->row()->type_name; } else { $row[] = "Ch\xc6\xb0a c\xe1\xba\xa5u h\303\254nh"; } $row[] = app_number_format($this->show_total_customer_paid_amount($customers->id)); $row[] = !empty($customers->sales_due) && $customers->sales_due != 0 ? app_number_format($customers->sales_due) : 0; $row[] = $customers->sales_return_due == null ? 0 : app_number_format($customers->sales_return_due); if ($customers->status == 1) { $str = "<span onclick='update_status(" . $customers->id . ",0)' id='span_" . $customers->id . "'  class='label label-success' style='cursor:pointer'>Active </span>"; } else { $str = "<span onclick='update_status(" . $customers->id . ",1)' id='span_" . $customers->id . "'  class='label label-danger' style='cursor:pointer'> Inactive </span>"; } $row[] = $str; $str2 = "<div class="btn-group" title="View Account">
\x9	\x9							<a class="btn btn-primary btn-o dropdown-toggle" data-toggle="dropdown" href="#">\xa\x9	\x9\x9	\x9\x9		\x9	Action <span class="caret"></span>\xa\x9\x9\x9\x9			\x9	\x9</a>\xa			\x9\x9		\x9\x9	<ul role="menu" class="dropdown-menu dropdown-light pull-right">"; if ($this->permissions("customers_edit") && $customers->id != 1) { $str2 .= "<li>\xa	\x9\x9\x9	\x9\x9					<a title="Edit Record ?" href="customers/update/" . $customers->id . "">\xa\x9\x9	\x9\x9\x9\x9		\x9\x9\x9\x9<i class="fa fa-fw fa-edit text-blue"></i>Edit
	\x9\x9\x9\x9\x9\x9\x9	\x9\x9\x9</a>\xa						\x9\x9\x9\x9	</li>"; } if ($this->permissions("sales_payment_add")) { $str2 .= "<li>\xa\x9\x9	\x9	\x9	\x9				<a title="Pay Opening Balance & Sales Due Payments" class="pointer" onclick="pay_now(" . $customers->id . ")" >
\x9\x9\x9\x9\x9		\x9	\x9\x9\x9	<i class="fa fa-fw fa-money text-blue"></i>Kh\303\241ch h\303\240ng tr\341\xba\xa3 n\341\273\xa3 
	\x9		\x9\x9\x9				\x9</a>
\x9	\x9\x9\x9\x9\x9\x9\x9\x9\x9</li>"; } if ($this->permissions("sales_return_payment_add") && false) { $str2 .= "<li>\xa\x9					\x9\x9\x9\x9\x9	<a title="Pay Return Due" class="pointer" onclick="pay_return_due(" . $customers->id . ")" >\xa\x9		\x9		\x9\x9\x9	\x9	\x9<i class="fa fa-fw fa-money text-blue"></i>Pay Return Due
\x9\x9	\x9\x9	\x9\x9\x9	\x9\x9</a>\xa	\x9\x9\x9\x9				\x9\x9</li>"; } if ($this->permissions("customers_delete") && $customers->id != 1) { $str2 .= "<li>\xa			\x9			\x9	\x9\x9	<a style="cursor:pointer" title="Delete Record ?" onclick="delete_customers(" . $customers->id . ")">
\x9	\x9		\x9\x9\x9		\x9		<i class="fa fa-fw fa-trash text-red"></i>Delete\xa\x9			\x9	\x9\x9				</a>\xa\x9\x9						\x9		</li>\xa\x9		\x9\x9\x9			\x9\x9
	\x9	\x9\x9			\x9\x9</ul>
				\x9		\x9	</div>"; } $row[] = $str2; $data[] = $row; } $output = array("draw" => $_POST["draw"], "recordsTotal" => $this->customers->count_all(), "recordsFiltered" => $this->customers->count_filtered(), "data" => $data); echo json_encode($output); } public function update_status() { $this->permission_check_with_msg("customers_edit"); $id = $this->input->post("id"); $status = $this->input->post("status"); $result = $this->customers->update_status($id, $status); return $result; } public function delete_customers() { $this->permission_check_with_msg("customers_delete"); $id = $this->input->post("q_id"); return $this->customers->delete_customers_from_table($id); } public function multi_delete() { $this->permission_check_with_msg("customers_delete"); $ids = implode(",", $_POST["checkbox"]); return $this->customers->delete_customers_from_table($ids); } public function show_pay_now_modal() { $this->permission_check_with_msg("sales_payment_add"); $customer_id = $this->input->post("customer_id"); echo $this->customers->show_pay_now_modal($customer_id); } public function save_payment() { $this->permission_check_with_msg("sales_payment_add"); echo $this->customers->save_payment(); } public function show_pay_return_due_modal() { $this->permission_check_with_msg("sales_return_payment_add"); $customer_id = $this->input->post("customer_id"); echo $this->customers->show_pay_return_due_modal($customer_id); } public function save_return_due_payment() { $this->permission_check_with_msg("sales_payment_add"); echo $this->customers->save_return_due_payment(); } public function delete_opening_balance_entry() { $this->permission_check_with_msg("sales_payment_delete"); $entry_id = $this->input->post("entry_id"); echo $this->customers->delete_opening_balance_entry($entry_id); } public function getCustomers($id = '') { echo $this->customers->getCustomersJson($id); } } ?>

Did this file decode correctly?

Original Code

<?php
 defined("\x42\x41\x53\x45\120\x41\x54\110") or die("\x4e\x6f\40\x64\x69\x72\x65\x63\164\x20\163\143\x72\x69\x70\164\40\141\x63\x63\145\x73\163\40\x61\x6c\x6c\x6f\x77\145\x64"); class Customers extends MY_Controller { public function __construct() { parent::__construct(); $this->load_global(); $this->load->model("\143\x75\x73\164\157\x6d\145\x72\x73\x5f\155\157\144\x65\x6c", "\143\165\163\164\157\x6d\x65\162\x73"); } public function index() { $this->permission_check("\143\165\163\164\x6f\155\x65\162\163\137\x76\x69\x65\x77"); $data = $this->data; $data["\160\x61\147\x65\x5f\164\x69\164\154\145"] = $this->lang->line("\x63\165\x73\x74\157\x6d\145\162\x73\137\154\x69\163\164"); $this->load->view("\143\165\163\164\x6f\155\145\x72\163\x2d\x76\x69\145\167", $data); } public function add() { $this->permission_check("\x63\165\163\164\x6f\155\145\162\x73\137\141\x64\x64"); $data = $this->data; $data["\x70\141\147\145\x5f\164\x69\164\x6c\x65"] = $this->lang->line("\143\x75\163\164\157\155\x65\x72\x73"); $this->load->view("\x63\165\x73\x74\157\x6d\x65\162\163", $data); } public function newcustomers() { $this->form_validation->set_rules("\x63\x75\x73\x74\157\x6d\145\x72\137\x6e\141\155\145", "\103\x75\x73\x74\x6f\x6d\x65\162\x20\x4e\141\155\x65", "\x74\x72\151\x6d\174\x72\x65\161\x75\151\162\145\x64"); if ($this->form_validation->run() == TRUE) { $result = $this->customers->verify_and_save(); echo $result; } else { echo "\x50\154\x65\141\163\x65\40\106\151\154\154\x20\103\157\155\160\165\154\x73\x6f\162\x79\50\52\40\155\141\x72\x6b\145\144\x29\x20\x46\151\x65\154\144\x73\x2e"; } } public function update($id) { $this->permission_check("\x63\165\x73\x74\x6f\155\x65\162\163\137\145\x64\x69\164"); $data = $this->data; $result = $this->customers->get_details($id, $data); $data = array_merge($data, $result); $data["\x70\x61\147\145\x5f\x74\151\x74\x6c\x65"] = $this->lang->line("\143\165\x73\x74\x6f\x6d\x65\x72\x73"); $this->load->view("\x63\165\x73\164\x6f\x6d\x65\x72\163", $data); } public function update_customers() { $this->form_validation->set_rules("\x63\165\163\164\157\x6d\145\x72\x5f\x6e\x61\x6d\x65", "\103\x75\x73\x74\157\x6d\x65\x72\x20\x4e\141\155\x65", "\164\162\x69\x6d\174\162\x65\x71\x75\x69\162\145\144"); if ($this->form_validation->run() == TRUE) { $result = $this->customers->update_customers(); echo $result; } else { echo "\120\x6c\x65\141\x73\145\40\x46\151\x6c\154\40\103\x6f\155\160\165\x6c\x73\x6f\x72\x79\50\x2a\40\x6d\141\162\x6b\x65\144\51\40\106\151\x65\154\144\163\56"; } } public function show_total_customer_paid_amount($customer_id) { return $this->db->select("\143\157\x61\154\x65\x73\x63\145\50\163\x75\155\x28\160\141\x69\x64\x5f\x61\155\157\165\x6e\164\51\x2c\x30\x29\40\141\x73\40\164\157\164")->where("\x63\165\x73\164\157\x6d\145\x72\137\x69\x64", $customer_id)->get("\144\142\137\163\141\x6c\145\163")->row()->tot; } public function ajax_list() { $list = $this->customers->get_datatables(); $data = array(); $no = $_POST["\x73\164\x61\162\164"]; foreach ($list as $customers) { $no++; $row = array(); $disable = $customers->id == 1 ? "\x64\151\x73\141\x62\154\x65\x64" : ''; if ($customers->id == 1) { $row[] = "\x3c\x73\160\x61\x6e\x20\x63\154\141\163\163\75\42\x74\145\170\x74\55\x62\x6c\x75\145\x22\76\116\x41\x3c\x2f\x73\x70\141\x6e\76"; } else { $row[] = "\74\x69\x6e\160\165\x74\x20\x74\x79\160\x65\x3d\42\x63\x68\x65\143\x6b\x62\x6f\170\42\40\x6e\x61\155\145\75\42\x63\x68\145\x63\x6b\142\x6f\170\133\135\42\x20" . $disable . "\40\x76\141\x6c\165\145\75" . $customers->id . "\x20\x63\x6c\141\163\163\x3d\x22\143\150\145\143\x6b\x62\157\170\x20\143\x6f\154\165\155\156\137\x63\x68\145\143\x6b\x62\x6f\x78\42\x20\76"; } $row[] = $customers->customer_code; $row[] = $customers->customer_name; $row[] = $customers->mobile; $type_id = $customers->type_id; if ($type_id > 0) { $row[] = $this->db->query("\123\x45\114\105\x43\x54\40\x74\171\160\145\x5f\x6e\x61\155\145\x20\106\122\117\115\x20\144\142\x5f\x74\x79\160\145\163\x20\167\x68\x65\162\x65\x20\x69\144\40\x3d\40\47{$type_id}\x27")->row()->type_name; } else { $row[] = "\103\x68\xc6\xb0\x61\40\x63\xe1\xba\xa5\165\x20\150\303\254\x6e\x68"; } $row[] = app_number_format($this->show_total_customer_paid_amount($customers->id)); $row[] = !empty($customers->sales_due) && $customers->sales_due != 0 ? app_number_format($customers->sales_due) : 0; $row[] = $customers->sales_return_due == null ? 0 : app_number_format($customers->sales_return_due); if ($customers->status == 1) { $str = "\x3c\x73\160\141\x6e\x20\157\156\143\x6c\151\x63\x6b\x3d\x27\165\x70\x64\141\x74\x65\137\x73\164\141\x74\165\163\x28" . $customers->id . "\x2c\60\51\47\x20\x69\x64\75\x27\163\x70\141\x6e\x5f" . $customers->id . "\47\x20\x20\143\x6c\141\163\x73\x3d\x27\x6c\141\142\x65\154\x20\154\x61\x62\x65\x6c\55\x73\165\x63\x63\x65\x73\163\x27\40\163\164\171\x6c\x65\x3d\x27\x63\165\x72\163\x6f\x72\72\160\x6f\151\x6e\x74\145\162\x27\x3e\x41\x63\164\x69\166\x65\40\74\57\163\x70\141\156\x3e"; } else { $str = "\74\x73\160\x61\x6e\x20\157\x6e\x63\154\x69\143\153\x3d\x27\165\160\144\x61\x74\145\x5f\x73\164\x61\164\x75\x73\x28" . $customers->id . "\54\x31\51\47\x20\151\144\75\47\163\160\x61\x6e\137" . $customers->id . "\47\40\x20\143\154\141\x73\x73\75\x27\x6c\141\142\145\154\x20\154\141\x62\145\x6c\55\144\141\x6e\x67\145\x72\x27\x20\163\x74\x79\154\x65\75\x27\143\165\162\163\157\x72\x3a\x70\157\x69\156\x74\145\162\47\76\x20\x49\x6e\x61\x63\164\151\x76\145\40\74\57\x73\x70\x61\156\76"; } $row[] = $str; $str2 = "\74\144\x69\x76\40\143\x6c\x61\x73\x73\x3d\42\x62\x74\x6e\x2d\x67\x72\157\x75\160\x22\40\x74\151\164\154\145\x3d\x22\126\151\145\x77\40\x41\143\143\157\165\x6e\164\x22\76\12\x9\11\x9\11\11\11\11\11\11\11\x3c\x61\x20\143\154\141\163\x73\75\x22\x62\164\156\40\x62\x74\156\x2d\x70\162\151\x6d\x61\162\x79\40\142\x74\156\55\x6f\40\x64\162\157\x70\144\x6f\x77\156\55\x74\x6f\147\147\x6c\x65\42\40\144\x61\x74\141\55\x74\157\x67\147\x6c\x65\x3d\42\x64\x72\157\160\144\157\x77\156\x22\40\x68\x72\145\x66\x3d\x22\43\x22\76\xa\x9\11\x9\x9\11\x9\x9\11\11\x9\11\101\x63\x74\x69\157\x6e\x20\x3c\163\160\x61\x6e\x20\143\x6c\x61\x73\163\x3d\x22\x63\x61\162\145\164\42\x3e\x3c\57\163\160\x61\156\x3e\xa\x9\x9\x9\x9\11\11\11\x9\11\x9\74\x2f\x61\76\xa\11\11\11\x9\x9\11\11\x9\x9\11\x3c\x75\x6c\40\162\157\x6c\145\75\42\155\145\156\x75\x22\x20\x63\x6c\x61\163\163\x3d\42\x64\x72\x6f\160\144\157\x77\x6e\55\155\x65\x6e\165\40\144\x72\157\x70\x64\x6f\167\x6e\55\154\151\147\x68\164\x20\x70\165\154\154\55\162\x69\x67\150\164\x22\76"; if ($this->permissions("\x63\x75\x73\x74\157\x6d\x65\x72\163\x5f\x65\144\151\164") && $customers->id != 1) { $str2 .= "\74\x6c\151\76\xa\11\x9\x9\x9\11\x9\x9\11\11\11\11\11\x3c\141\x20\164\x69\x74\154\x65\x3d\42\105\x64\151\164\x20\122\145\143\157\162\144\40\x3f\x22\x20\150\162\x65\x66\75\42\x63\165\163\164\x6f\x6d\145\162\163\x2f\x75\160\144\141\x74\x65\x2f" . $customers->id . "\x22\76\xa\x9\x9\11\x9\x9\x9\x9\11\11\x9\x9\x9\x9\74\151\40\143\154\141\163\x73\x3d\42\146\x61\x20\146\141\x2d\146\x77\x20\146\141\x2d\145\x64\x69\164\40\x74\145\x78\164\x2d\x62\x6c\165\145\x22\76\x3c\57\151\76\x45\144\151\164\12\11\x9\x9\x9\x9\x9\x9\x9\11\x9\x9\x9\x3c\57\x61\x3e\xa\11\11\11\11\11\11\x9\x9\x9\x9\11\74\57\154\151\76"; } if ($this->permissions("\x73\x61\x6c\x65\163\137\x70\141\171\x6d\x65\156\x74\137\x61\144\x64")) { $str2 .= "\x3c\154\x69\x3e\xa\x9\x9\11\x9\11\x9\11\x9\11\11\11\11\74\x61\40\164\151\164\154\x65\75\x22\120\x61\x79\x20\117\160\x65\x6e\x69\x6e\x67\x20\x42\141\154\x61\x6e\x63\145\x20\x26\x20\123\141\x6c\x65\163\x20\104\x75\x65\x20\x50\x61\x79\x6d\x65\x6e\164\x73\42\40\143\154\141\163\163\75\x22\x70\x6f\x69\156\164\145\x72\42\40\x6f\156\x63\x6c\151\x63\x6b\75\x22\160\x61\171\137\x6e\157\167\50" . $customers->id . "\51\42\x20\76\12\x9\x9\x9\x9\x9\11\11\x9\11\x9\x9\x9\11\x3c\x69\x20\x63\154\141\x73\163\75\42\x66\x61\x20\x66\141\55\x66\x77\x20\146\141\x2d\155\157\x6e\145\171\40\x74\x65\170\x74\x2d\142\x6c\x75\x65\42\76\74\x2f\x69\x3e\x4b\150\303\241\143\150\x20\150\303\240\x6e\x67\40\164\x72\341\xba\xa3\x20\x6e\341\273\xa3\40\12\11\x9\11\11\x9\x9\x9\11\11\11\11\x9\x3c\57\141\76\12\x9\11\x9\x9\x9\x9\x9\x9\x9\x9\x9\74\57\154\x69\76"; } if ($this->permissions("\x73\141\x6c\145\163\137\x72\x65\x74\x75\162\156\x5f\x70\x61\x79\x6d\x65\x6e\164\137\141\x64\x64") && false) { $str2 .= "\x3c\154\151\x3e\xa\x9\11\11\11\11\11\x9\x9\x9\x9\x9\11\74\141\x20\164\151\x74\154\145\x3d\42\120\141\171\x20\122\x65\164\165\162\156\x20\104\165\x65\x22\x20\x63\x6c\141\x73\x73\x3d\x22\x70\x6f\151\x6e\x74\x65\x72\x22\40\157\156\x63\154\x69\x63\153\x3d\42\x70\x61\x79\x5f\x72\145\164\165\x72\x6e\x5f\144\165\145\50" . $customers->id . "\x29\x22\x20\x3e\xa\x9\11\11\x9\11\11\x9\x9\x9\11\x9\11\x9\74\151\x20\143\154\141\x73\x73\75\x22\x66\x61\x20\x66\x61\x2d\146\167\x20\x66\141\x2d\155\157\x6e\x65\x79\40\x74\x65\170\164\x2d\142\154\x75\x65\x22\76\x3c\x2f\x69\x3e\x50\141\x79\x20\x52\x65\164\x75\162\156\x20\104\165\x65\12\x9\x9\11\x9\x9\11\x9\x9\x9\11\x9\x9\x3c\57\x61\76\xa\11\x9\x9\x9\x9\11\11\11\11\x9\x9\74\x2f\154\151\x3e"; } if ($this->permissions("\143\165\x73\x74\157\155\145\162\163\x5f\x64\145\x6c\x65\x74\x65") && $customers->id != 1) { $str2 .= "\x3c\x6c\151\x3e\xa\11\11\11\x9\11\11\11\x9\11\x9\x9\11\74\141\x20\x73\x74\171\x6c\x65\75\x22\143\x75\x72\x73\157\x72\72\x70\157\x69\156\x74\145\162\42\40\x74\x69\x74\x6c\145\x3d\42\x44\x65\154\x65\164\145\x20\122\x65\143\157\x72\144\x20\77\x22\x20\x6f\x6e\143\x6c\x69\143\x6b\x3d\42\144\x65\x6c\x65\164\145\x5f\143\165\163\164\x6f\155\145\162\163\x28" . $customers->id . "\x29\42\x3e\12\x9\11\x9\11\11\x9\x9\x9\11\11\x9\11\11\74\151\x20\143\154\141\x73\x73\75\42\x66\x61\40\x66\x61\55\x66\167\x20\146\x61\x2d\164\162\141\163\150\x20\164\145\x78\164\x2d\162\x65\x64\42\76\x3c\57\x69\76\104\x65\x6c\145\164\x65\xa\x9\11\11\11\x9\11\x9\x9\11\11\11\11\x3c\57\x61\76\xa\x9\x9\11\11\11\11\11\11\x9\11\11\74\x2f\154\x69\x3e\xa\x9\11\11\x9\x9\x9\11\11\11\x9\x9\12\11\x9\11\x9\x9\11\11\11\x9\x9\x3c\x2f\165\154\76\12\11\11\11\11\x9\11\11\x9\11\74\57\144\x69\166\x3e"; } $row[] = $str2; $data[] = $row; } $output = array("\144\162\141\167" => $_POST["\144\162\141\x77"], "\162\x65\143\x6f\x72\144\163\x54\157\x74\x61\x6c" => $this->customers->count_all(), "\x72\x65\x63\157\x72\144\x73\106\x69\x6c\164\145\x72\145\144" => $this->customers->count_filtered(), "\144\141\x74\x61" => $data); echo json_encode($output); } public function update_status() { $this->permission_check_with_msg("\143\x75\x73\164\157\x6d\x65\162\163\137\x65\x64\151\164"); $id = $this->input->post("\151\144"); $status = $this->input->post("\163\164\x61\x74\165\x73"); $result = $this->customers->update_status($id, $status); return $result; } public function delete_customers() { $this->permission_check_with_msg("\x63\x75\163\x74\157\155\x65\x72\x73\137\x64\145\x6c\x65\164\145"); $id = $this->input->post("\161\137\151\x64"); return $this->customers->delete_customers_from_table($id); } public function multi_delete() { $this->permission_check_with_msg("\143\x75\x73\164\157\155\x65\162\x73\x5f\144\145\x6c\x65\164\x65"); $ids = implode("\54", $_POST["\143\x68\145\143\153\142\157\x78"]); return $this->customers->delete_customers_from_table($ids); } public function show_pay_now_modal() { $this->permission_check_with_msg("\163\141\154\x65\x73\x5f\x70\x61\x79\155\145\156\x74\137\141\x64\144"); $customer_id = $this->input->post("\x63\x75\163\164\x6f\x6d\x65\162\137\x69\x64"); echo $this->customers->show_pay_now_modal($customer_id); } public function save_payment() { $this->permission_check_with_msg("\x73\x61\x6c\145\x73\x5f\160\x61\x79\155\145\x6e\164\x5f\141\144\144"); echo $this->customers->save_payment(); } public function show_pay_return_due_modal() { $this->permission_check_with_msg("\x73\x61\x6c\145\163\137\x72\145\164\165\x72\156\x5f\160\x61\x79\x6d\x65\156\x74\137\141\x64\144"); $customer_id = $this->input->post("\x63\x75\163\x74\157\155\x65\162\x5f\151\x64"); echo $this->customers->show_pay_return_due_modal($customer_id); } public function save_return_due_payment() { $this->permission_check_with_msg("\x73\141\154\145\163\x5f\160\141\171\155\x65\156\x74\137\141\x64\144"); echo $this->customers->save_return_due_payment(); } public function delete_opening_balance_entry() { $this->permission_check_with_msg("\x73\x61\154\145\x73\137\160\x61\x79\x6d\x65\156\164\x5f\144\x65\154\145\164\x65"); $entry_id = $this->input->post("\145\x6e\x74\162\x79\137\151\144"); echo $this->customers->delete_opening_balance_entry($entry_id); } public function getCustomers($id = '') { echo $this->customers->getCustomersJson($id); } }

Function Calls

None

Variables

None

Stats

MD5 b07bf7061548d6909e419c88d98bd7d7
Eval Count 0
Decode Time 103 ms