<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
 * PrivateContent Class
 * 
 * @author dzungnv02
 *
 */

class PrivateContent extends MX_Controller 
{
	public function __construct() {
		parent::__construct();
		$this->load->model('Directory_model', 'objDirectory', TRUE);
	}
	
	public function createshare () {
		$id = $this->input->post('id',TRUE);
		$type = $this->input->post('type',TRUE);
		$shareAllChild = $this->input->post('shareallchild',TRUE);
	}
}