You are here

function services_endpoint_export in Services 7.3

Same name and namespace in other branches
  1. 6.3 services.module \services_endpoint_export()

Export an endpoint.

Return value

string

File

./services.module, line 483
Provides a generic but powerful API for web services.

Code

function services_endpoint_export($endpoint, $indent = '') {
  ctools_include('export');
  return ctools_export_object('services_endpoint', $endpoint, $indent);
}