Line | |
---|
1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
---|
2 | /**
|
---|
3 | * Home Class
|
---|
4 | *
|
---|
5 | * @author dzungnv02
|
---|
6 | *
|
---|
7 | */
|
---|
8 |
|
---|
9 | class Home extends MX_Controller
|
---|
10 | {
|
---|
11 |
|
---|
12 | public function __construct()
|
---|
13 | {
|
---|
14 | parent::__construct();
|
---|
15 | }
|
---|
16 |
|
---|
17 | public function index()
|
---|
18 | {
|
---|
19 | $this->load->view ( 'home');
|
---|
20 | }
|
---|
21 |
|
---|
22 | public function test()
|
---|
23 | {
|
---|
24 | $this->load->view ( 'home');
|
---|
25 | }
|
---|
26 |
|
---|
27 | public function signin()
|
---|
28 | {
|
---|
29 | $this->load->model(array('user_model'));
|
---|
30 | $this->load->view('signin');
|
---|
31 | }
|
---|
32 |
|
---|
33 | public function signout()
|
---|
34 | {
|
---|
35 |
|
---|
36 | }
|
---|
37 |
|
---|
38 | }
|
---|
39 |
|
---|
40 | /* End of file home.php */
|
---|
41 | /* Location: ./application/modules/frontend/controllers/home.php */ |
---|
Note: See
TracBrowser
for help on using the repository browser.