16 lines
359 B
PHP
16 lines
359 B
PHP
<?php
|
|
require_once dirname( __DIR__, 6 ) . "/portal/admin/core/api/php/includes/init.php";
|
|
require_once dirname( __DIR__, 6 ) . "/portal/admin/core/api/php/includes/functions.php";
|
|
|
|
|
|
|
|
|
|
if(Input::get("get_customer")){
|
|
$value = Input::get("data");
|
|
$value = json_decode(html_entity_decode($value), true);
|
|
EchoJsonObject(["data" => $value]);
|
|
}
|
|
|
|
|
|
|