/** * To JSONP conversion * * @param mixed $data * @return string */ public function to_jsonp($data = null) { $callback = \Input::get_post('callback', null)); is_null($callback) and $callback = 'response'; return $callback.'('.$this->to_json($data).')'; }
It looks like you're new here. If you want to get involved, click one of these buttons!