Order_ordersource.php
401 Bytes
<?php
class Order_ordersource extends CI_Driver
{
public $CI;
public function __construct () {
$this->CI = &get_instance();
}
public function all ($id) {
$url = $this->CI->config->item('apiBaseUrl') . 'order/ordersource/'.$id;
$result = file_get_contents($url);
$json = json_decode($result);
$ret = $json->data;
return $ret;
}
}