| @@ 10-18 (lines=9) @@ | ||
| 7 | $this->load->model('computing-support/status_model', 'status_model'); |
|
| 8 | } |
|
| 9 | ||
| 10 | public function index() { |
|
| 11 | ||
| 12 | $data = array(); |
|
| 13 | $data['status'] = $this->status_model->view(); |
|
| 14 | ||
| 15 | $this->load->view('templates/header', $data); |
|
| 16 | $this->load->view('computing-support/status/view'); |
|
| 17 | $this->load->view('templates/footer'); |
|
| 18 | } |
|
| 19 | ||
| 20 | public function display() { |
|
| 21 | ||
| @@ 20-28 (lines=9) @@ | ||
| 17 | $this->load->view('templates/footer'); |
|
| 18 | } |
|
| 19 | ||
| 20 | public function display() { |
|
| 21 | ||
| 22 | $data = array(); |
|
| 23 | $data['status'] = $this->status_model->view(); |
|
| 24 | ||
| 25 | $this->load->view('templates/header', $data); |
|
| 26 | $this->load->view('computing-support/status/display'); |
|
| 27 | $this->load->view('templates/footer'); |
|
| 28 | } |
|
| 29 | ||
| 30 | public function auto() { |
|
| 31 | ||