source: pro-violet-viettel/www/deploy/20150304/application/modules/filemanager/controllers/filemanager.php @ 782

Last change on this file since 782 was 782, checked in by dungnv, 10 years ago
File size: 687 bytes
Line 
1<?php
2
3if (!defined('BASEPATH'))
4    exit('No direct script access allowed');
5
6/**
7 * Filemanager Class
8 *
9 * @author dzungnv02
10 *
11 */
12class Filemanager extends MX_Controller {
13
14    public function __construct() {
15        parent::__construct();
16    }
17
18    public function index() {
19        $user_info = $this->session->userdata('userInfo');
20
21        if ($user_info) {
22            parse_str($user_info['user'],$user);
23   
24            $data['user']=array_merge($user_info,$user);
25            $this->load->view('main', $data);
26        }
27    }
28
29}
30
31/* End of file filemanager.php */
32/* Location: ./application/modules/filemanager/controllers/filemanager.php */
Note: See TracBrowser for help on using the repository browser.