my_parent_controller(); $this->vimeo = new Vimeo_library(); } /** * Fetch video details from vimeo */ public function get_video_details () { $video_id = $this->input->get('video_id'); $details = $this->vimeo->getVideo($video_id); output_to_json($this, json_encode($details)); } }