load->model('job'); // load language file $this->lang->load(strtolower($this->router->class)); } /** * Get jobs belonging to projects owned by the user. */ public function getOwn() { $query = $this->db->order_by('progress', 'desc') ->get_where('jobs', array('started_by' => $this->session->userdata('user_id'))); $jobs = $query->result_array(); for($i=0; $idb->select('name')->get_where('projects', array('id' => $jobs[$i]['project_id']))->row()->name; $progress = $jobs[$i]['progress']; switch($progress) { case -1: $progress = lang('waiting'); break; case 100: $progress = lang('done'); break; default: $progress = $progress . "%"; break; } $jobs[$i]['progress'] = $progress; } $this->output ->set_content_type('application/json') ->set_output(json_encode( array( 'count' => count($jobs), 'jobs' => $jobs ) )); } /** * Get a list of results that the owner has not yet seen. * @todo not yet verified */ public function get_unseen_results() { $results = $this->job->getUnseenResults(); $this->output ->set_content_type('application/json') ->set_output(json_encode( array( 'count' => count($results), 'results' => $results ) )); } }