function wsclient_service_load in Web service client 7
Load a single web service description.
Return value
WSClientServiceDescription The web service description or FALSE.
7 calls to wsclient_service_load()
- WSClientFeaturesController::export in ./
wsclient.features.inc - Generates the result for hook_features_export().
- WSClientRESTTestCase::testServiceInvocation in wsclient_examples/
wsclient_examples.test - Tests invoking the google translation service.
- WSClientRestWSTestCase::testCRUD in wsclient_examples/
wsclient_examples.test - Test the RestWS node service.
- WSClientSOAPTestCase::testServiceInvocation in wsclient_examples/
wsclient_examples.test - Tests invoking the geocoder.us service.
- wsclient_service_action in ./
wsclient.rules.inc - Action callback: invoke a web service.
1 string reference to 'wsclient_service_load'
- wsclient_service_form in wsclient_ui/
wsclient_ui.inc - Provides a form to add, edit and clone web service descriptions.
File
- ./
wsclient.module, line 90 - Web service client - module file.
Code
function wsclient_service_load($name) {
$return = entity_load_multiple_by_name('wsclient_service', array(
$name,
));
return reset($return);
}