You are here

protected function EntityShareServerRestAbstract::outputResponse in Entity Share 7

Output the response to the client.

1 call to EntityShareServerRestAbstract::outputResponse()
EntityShareServerRestAbstract::handle in modules/entity_share_server/includes/entity_share_server.rest.abstract.inc
Handle the server.

File

modules/entity_share_server/includes/entity_share_server.rest.abstract.inc, line 355
Class for handling Entity Share Rest Server request.

Class

EntityShareServerRestAbstract
Abstract Class to manage the EntityShare Rest server.

Code

protected function outputResponse() {
  $this
    ->formatResponse();
  $this
    ->sendHeaders();
  print $this->response;

  // Do not let this output.
  drupal_page_footer();
  exit;
}