Ejemplo n.º 1
0
 public function get_all_contact()
 {
     $id = $this->user_id;
     if (empty($id)) {
         $id = isset($_GET['guid']) ? $_GET['guid'] : '';
         if (empty($id)) {
             $this->send_response(400, NULL, Kohana::lang('graph.guid_empty'));
         }
         $result = $this->model->get_contact_by_device($id);
     } else {
         $result = $this->model->get_contact_by_uid($id);
     }
     $this->send_response(200, $result);
 }