Revision 5415,
404 bytes
checked in by cristiano, 11 years ago
(diff) |
Ticket #2434 - Correções no importar ical
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | require_once 'api/controller.php'; |
---|
4 | |
---|
5 | $method = $_REQUEST['analize'] ? 'analize' : 'parse'; |
---|
6 | |
---|
7 | $args = Controller::call( $method, |
---|
8 | |
---|
9 | array( 'service' => $_REQUEST['type'] ), |
---|
10 | |
---|
11 | isset( $_FILES['data'] ) ? file_get_contents( $_FILES['data']['tmp_name'] ) : $_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.