You are here

function services_endpoint_load_all in Services 7.3

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

Load all endpoints.

Return value

array Array of endpoint objects keyed by endpoint names.

3 calls to services_endpoint_load_all()
services_menu in ./services.module
Implements hook_menu().
services_requirements in ./services.install
Implements hook_requirements().
services_update_7400 in ./services.install
Update 7400 reduces nesting in the way server settings are stored

File

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

Code

function services_endpoint_load_all() {
  ctools_include('export');
  return ctools_export_load_object('services_endpoint');
}