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

Last change on this file since 780 was 780, checked in by dungnv, 10 years ago
File size: 763 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                $aryParams = array();
22        parse_str($user_info['user'], $aryParams);
23
24        if ($user_info) {
25            parse_str($user_info['user'],$user);
26            $data['user']=array_merge($user_info,$user);
27            $this->load->view('main', $data);
28        }
29    }
30
31}
32
33/* End of file filemanager.php */
34/* Location: ./application/modules/filemanager/controllers/filemanager.php */
Note: See TracBrowser for help on using the repository browser.