git.ithinksw.org
/
extjs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git]
/
examples
/
direct
/
php
/
config.php
1
<?php
2
$API = array(
3
'TestAction'=>array(
4
'methods'=>array(
5
'doEcho'=>array(
6
'len'=>1
7
),
8
'multiply'=>array(
9
'len'=>1
10
),
11
'getTree'=>array(
12
'len'=>1
13
)
14
)
15
),
16
17
'Profile'=>array(
18
'methods'=>array(
19
'getBasicInfo'=>array(
20
'len'=>2
21
),
22
'getPhoneInfo'=>array(
23
'len'=>1
24
),
25
'getLocationInfo'=>array(
26
'len'=>1
27
),
28
'updateBasicInfo'=>array(
29
'len'=>2,
30
'formHandler'=>true
31
)
32
)
33
)
34
);