You are here

WsDataFile.inc in Web Service Data 7

File

modules/ws_services/includes/WsDataFile.inc
View source
<?php

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();
  }

}

Classes

Namesort descending Description
WsDataFile