Rev | Line | |
---|
[293] | 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 | {
|
---|
[294] | 19 | $this->load->view ( 'home');
|
---|
[293] | 20 | }
|
---|
| 21 |
|
---|
| 22 | public function signin()
|
---|
| 23 | {
|
---|
| 24 |
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | public function signout()
|
---|
| 28 | {
|
---|
| 29 |
|
---|
| 30 | }
|
---|
| 31 |
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 | /* End of file home.php */
|
---|
| 35 | /* Location: ./application/modules/frontend/controllers/home.php */ |
---|
Note: See
TracBrowser
for help on using the repository browser.