function services_endpoint_load_all in Services 6.3
Same name and namespace in other branches
- 7.3 services.module \services_endpoint_load_all()
Load all endpoints.
Return value
array Array of endpoint objects keyed by endpoint names.
1 call to services_endpoint_load_all()
- services_menu in ./
services.module - Implementation of hook_menu().
File
- ./
services.module, line 219 - 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');
}