You are here

function services_endpoint_export in Services 6.3

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

Export an endpoint.

Return value

string

1 string reference to 'services_endpoint_export'
services_update_6300 in ./services.install
Update 6300 adds the concept of endpoints which is a way to expose a specific server using a specific authentication method, with the full set or a subset of the installed services.

File

./services.module, line 262
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);
}