You are here

function services_client_connection_load_all in Services Client 7

Same name and namespace in other branches
  1. 7.2 services_client_connection/services_client_connection.module \services_client_connection_load_all()

Load all available connection definitions

2 calls to services_client_connection_load_all()
services_client_admin_list in ./services_client.admin.inc
List the all connections and hooks
services_client_ctools_export_ui_form in plugins/export_ui/services_client.inc
Define the preset add/edit form.

File

services_client_connection/services_client_connection.module, line 222
Services Client Connection allows to configure different connections via UI and store them as exportable configuration. API client should be able to communicate with different versions of remote Services module via unified API client.

Code

function services_client_connection_load_all() {
  ctools_include('export');
  return ctools_export_crud_load_all('services_client_connection');
}