*/ class Results extends MY_Controller { /** * Constructor. */ public function __construct() { parent::__construct(); $this->load->model('program'); $this->load->model('job'); $this->load->model('server'); } /** * */ public function index() { } /** * Get the results of a given project. * * @param string $prj_id the project for which to get the results */ public function project($projectId) { } /** * Get the results of a given experiment. * * @param string $experimentId The experiment for which to get the results */ public function experiment($experimentId) { } /** * Get the results of a given job. * * @param string $job_id the job for which to get the results */ public function job($jobId) { } } /* End of file results.php */ /* Location: ./application/controllers/results.php */