source: trunk/prototype/converter.php @ 5736

Revision 5736, 503 bytes checked in by cristiano, 12 years ago (diff)

Ticket #2434 - correções na importação

Line 
1<?php
2
3require_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
15if( !isset($_REQUEST['readable']) || !$_REQUEST['readable'])
16        require_once 'Sync.php';
17else
18        print_r(serialize($args));
19
20?>
Note: See TracBrowser for help on using the repository browser.