You are here

class ServicesParserURLEncoded in Services 7.3

Hierarchy

Expanded class hierarchy of ServicesParserURLEncoded

2 string references to 'ServicesParserURLEncoded'
rest_server_request_parsers in servers/rest_server/rest_server.module
Builds a list of request parsers that are available to the RESTServer.
ServicesRESTServerTests::testParseRequestBody in servers/rest_server/tests/ServicesRESTServerTests.test
Test for parseRequestBody() method.

File

servers/rest_server/includes/ServicesParser.inc, line 7

View source
class ServicesParserURLEncoded implements ServicesParserInterface {
  public function parse(ServicesContextInterface $context) {
    parse_str($context
      ->getRequestBody(), $data);
    return $data;
  }

}

Members