| 1 | <?php defined('BASEPATH') OR exit('No direct script access allowed'); |
||
| 3 | class Index extends My_Force_Admin { |
||
| 4 | |||
| 5 | public function __construct() { |
||
| 9 | |||
| 10 | public function index() { |
||
| 11 | |||
| 12 | $this->load->view('templates/header'); |
||
| 13 | $this->load->view('admin/view'); |
||
| 14 | $this->load->view('templates/footer'); |
||
| 15 | } |
||
| 16 | } // END controller |
||
| 17 |