You are here

class WsDataFile in Web Service Data 7

Hierarchy

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

Namesort descending Modifiers Type Description Overrides
WsData::$data public property
WsData::$error protected property
WsData::$languages protected property
WsData::addData public function Add data to an empty object or replace all existing data
WsData::getData public function Retrieve the value for the given data key. 1
WsData::getError public function
WsData::__construct public function
WsDataFile::accepts public function Overrides WsData::accepts
WsDataFile::parse protected function Overrides WsData::parse