function services_client_ajax_callback in Services Client 7
Selects just the plugins to be returned for re-rendering
Since the controlling logic for populating the form is in the form builder function, all we do here is select the element and return it to be updated.
Return value
renderable array (plugins)
1 string reference to 'services_client_ajax_callback'
- 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 204
Code
function services_client_ajax_callback($form, $form_state) {
return $form['plugins'];
}