Blame view

php/api.php 645 Bytes
16035364   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php

    require('config.php');
    header('Content-Type: text/javascript');

    $actions = array();
    foreach($API as $aname => &$a){
	$methods = array();
	foreach($a['methods'] as $mname => &$m){
	    $md = array(
		'name'=>$mname,
		'len'=>$m['len']
	    );
	    if(isset($m['formHandler']) && $m['formHandler']){
		$md['formHandler'] = true;
	    }
	    $methods[] = $md;
	}
	$actions[$aname] = $methods;
    }

    $cfg = array(
	'url'=>'php/router.php',
	'type'=>'remoting',
 'id' => 'amda-provider',
 'maxRetries' => 0,
	'actions'=>$actions
    );

    echo 'Ext.app.REMOTING_API = ';

    echo json_encode($cfg);
    echo ';';

?>