tvheadend/vendor/ext-3.4.1/examples/direct/php/classes/Profile.php
Adam Sutton bafcfff42d webui: restructure webui/extjs source files
I want to keep the 3rd-party packages away from the main source
where possible.
2013-06-03 17:11:01 +01:00

68 lines
No EOL
1.8 KiB
PHP

<?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@extjs.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'=>'Ext JS, LLC',
'email'=>'aaron@extjs.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
)
);
}
}