You are here

function system_service_getservices in Services 6.2

Same name and namespace in other branches
  1. 7 services/system_service/system_service.inc \system_service_getservices()

Return and array of all the available services.

Return value

array An array containing all services and thir methods

See also

services_get_all()

1 string reference to 'system_service_getservices'
system_service_service in services/system_service/system_service.module
Implementation of hook_service().

File

services/system_service/system_service.inc, line 133
Link general system functionalities to services module.

Code

function system_service_getservices() {
  return services_get_all();
}