source: trunk/prototype/converter.php @ 5346

Revision 5346, 348 bytes checked in by gustavo, 12 years ago (diff)

Ticket #2433 - Adicionar a configuração da nova agenda no expressoMail

Line 
1<?php
2
3require_once 'app/controller.php';
4
5$args = Controller::call( 'parse',
6
7                          array( 'service' => $_REQUEST['type'] ),
8
9                          isset( $_FILES['data'] ) ? file_get_contents( $_FILES['data']['tmp_name'] ) : $_REQUEST['data'],
10
11                          $_REQUEST['params'] );
12
13if(!$_REQUEST['readable'])
14        require_once 'Sync.php';
15else
16        print_r(serialize($args));
17
18?>
Note: See TracBrowser for help on using the repository browser.