source: pro-violet-viettel/sourcecode/application/modules/frontend/controllers/home.php @ 306

Last change on this file since 306 was 305, checked in by namnd, 11 years ago
File size: 640 bytes
RevLine 
[293]1<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2/**
3 * Home Class
4 *
5 * @author dzungnv02
6 *
7 */
8
[305]9class Home extends MX_Controller
[293]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       
[305]22        public function test()
23        {
24                $this->load->view ( 'home');
25        }
26       
[293]27        public function signin()
28        {
[305]29                $this->load->model(array('user_model'));
30                $this->load->view('signin');
[293]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.