You are here

function services_client_plugin_options in Services Client 7

Helper function to populate the second dropdown. This would normally be pulling data from the database.

Parameters

type. This can be either mapping or conditions.:

key. This will determine which set of options is returned.:

Return value

array of options

1 call to services_client_plugin_options()
services_client_ctools_export_ui_form in plugins/export_ui/services_client.inc
Define the preset add/edit form.

File

plugins/export_ui/services_client.inc, line 218

Code

function services_client_plugin_options($type = 'mapping', $key = '') {
  return services_client_get_plugins($type, TRUE, $key);
}