class WsDataFile in Web Service Data 7
Hierarchy
- class \WsData
- class \WsDataFile
Expanded class hierarchy of WsDataFile
File
- modules/
ws_services/ includes/ WsDataFile.inc, line 2
View source
class WsDataFile extends WsData {
// Returns an array of the content type of the data this processor accepts
public function accepts() {
return array(
'json',
);
}
// Parse the web service response string into a structured array and return the array
protected function parse($data) {
return array();
}
}Members
|
Name |
Modifiers | Type | Description | Overrides |
|---|---|---|---|---|
|
WsData:: |
public | property | ||
|
WsData:: |
protected | property | ||
|
WsData:: |
protected | property | ||
|
WsData:: |
public | function | Add data to an empty object or replace all existing data | |
|
WsData:: |
public | function | Retrieve the value for the given data key. | 1 |
|
WsData:: |
public | function | ||
|
WsData:: |
public | function | ||
|
WsDataFile:: |
public | function |
Overrides WsData:: |
|
|
WsDataFile:: |
protected | function |
Overrides WsData:: |