Profile.php
1.81 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
class Profile {
/**
* Handler for client side form sumbit
* @param Array $formPacket Collection of form items along with direct data
* @return Array response packet
*/
function updateBasicInfo($formPacket){
$response = array();
$email = $formPacket['email'];
if ($email == 'aaron@sencha.com') {
$success = false;
$response['errors'] = array(
'email'=>'already taken'
);
} else {
$success = true;
}
$response['success'] = $success;
// return form packet for demonstration/testing purposes
$response['debug_formPacket'] = $formPacket;
return $response;
}
/**
* put your comment there...
* This method configured with len=2, so 2 arguments will be sent
* in the order according to the client side specified paramOrder
* @param Number $userId
* @param String $foo
* @return Array response packet
*/
function getBasicInfo($userId, $foo){
return array(
'success'=>true,
'data'=>array(
'foo'=>$foo,
'name'=>'Aaron Conran',
'company'=>'Sencha Inc.',
'email'=>'aaron@sencha.com'
)
);
}
function getPhoneInfo($userId) {
return array(
'success'=>true,
'data'=>array(
'cell'=>'443-555-1234',
'office'=>'1-800-CALLEXT',
'home'=>''
)
);
}
function getLocationInfo($userId) {
return array(
'success'=>true,
'data'=>array(
'street'=>'1234 Red Dog Rd.',
'city'=>'Seminole',
'state'=>'FL',
'zip'=>33776
)
);
}
}