You are here

function wsconfig_view_form_wrapper in Web Service Data 7

Form callback wrapper: view a wsconfig.

Parameters

$wsconfig: The wsconfig object being viewed by this form.

See also

wsconfig_view_form()

1 string reference to 'wsconfig_view_form_wrapper'
WsConfigUIController::hook_menu in modules/wsconfig/wsconfig.entity.inc
Overrides hook_menu() defaults. Main reason for doing this is that parent class hook_menu() is optimized for entity type administration.

File

modules/wsconfig/wsconfig.admin.inc, line 30
Admin forms for wsconfig

Code

function wsconfig_view_form_wrapper($wsconfig) {
  return drupal_get_form('wsconfig_view_form', $wsconfig);
}