Revision 5514,
470 bytes
checked in by acoutinho, 11 years ago
(diff) |
Ticket #2434 - Implementacao anexos, acls e delegacao de participantes
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | require_once 'api/controller.php'; |
---|
4 | |
---|
5 | $method = isset($_REQUEST['analize']) && $_REQUEST['analize'] ? 'analize' : 'parse'; |
---|
6 | |
---|
7 | $args = Controller::call( $method, |
---|
8 | |
---|
9 | array( 'service' => $_REQUEST['type'] ), |
---|
10 | |
---|
11 | isset( $_FILES['files'] ) ? file_get_contents( $_FILES['files']['tmp_name'][0], $_FILES['files']['size'][0] ) : $_REQUEST['data'], |
---|
12 | |
---|
13 | $_REQUEST['params'] ); |
---|
14 | |
---|
15 | if( !$_REQUEST['readable']) |
---|
16 | require_once 'Sync.php'; |
---|
17 | else |
---|
18 | print_r(serialize($args)); |
---|
19 | |
---|
20 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.