You are here

interface ServicesContextInterface in Services 7.3

ServicesContext object is for storing all global variables. The idea is to prevent RESTServer from accessing global variables directly and get them only from Context.

Hierarchy

Expanded class hierarchy of ServicesContextInterface

All classes that implement ServicesContextInterface

File

servers/rest_server/includes/ServicesContext.inc, line 8

View source
interface ServicesContextInterface {
  public function buildFromGlobals();
  public function getEndpointPath();
  public function getCanonicalPath();
  public function getPostData();
  public function getRequestBody();
  public function getServerVariable($variable_name);
  public function getGetVariable($variable_name = NULL);

}

Members