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 4.0.7 - Released 10/19/2011
[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
'getGrid'=>array(
15
'len'=>1
16
),
17
'showDetails'=>array(
18
'params'=>array(
19
'firstName',
20
'lastName',
21
'age'
22
)
23
)
24
)
25
),
26
27
'Profile'=>array(
28
'methods'=>array(
29
'getBasicInfo'=>array(
30
'len'=>2
31
),
32
'getPhoneInfo'=>array(
33
'len'=>1
34
),
35
'getLocationInfo'=>array(
36
'len'=>1
37
),
38
'updateBasicInfo'=>array(
39
'len'=>0,
40
'formHandler'=>true
41
)
42
)
43
)
44
);