You are here

public function ServicesParserMultipart::parse in Services 7.3

Overrides ServicesParserInterface::parse

File

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

Class

ServicesParserMultipart

Code

public function parse(ServicesContextInterface $context) {

  // php://input is not available with enctype="multipart/form-data".
  // see http://php.net/manual/en/wrappers.php.php
  return $context
    ->getPostData();
}