source: pro-bachkim-filespace/sourcecode/application/modules/ajax/controllers/sharecontent.php @ 42

Last change on this file since 42 was 16, checked in by dungnv, 11 years ago
File size: 509 bytes
Line 
1<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2/**
3 * PrivateContent Class
4 *
5 * @author dzungnv02
6 *
7 */
8
9class PrivateContent extends MX_Controller
10{
11        public function __construct() {
12                parent::__construct();
13                $this->load->model('Directory_model', 'objDirectory', TRUE);
14        }
15       
16        public function createshare () {
17                $id = $this->input->post('id',TRUE);
18                $type = $this->input->post('type',TRUE);
19                $shareAllChild = $this->input->post('shareallchild',TRUE);
20        }
21}
Note: See TracBrowser for help on using the repository browser.