Line | |
---|
1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
---|
2 | /**
|
---|
3 | * PrivateContent Class
|
---|
4 | *
|
---|
5 | * @author dzungnv02
|
---|
6 | *
|
---|
7 | */
|
---|
8 |
|
---|
9 | class 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.