You are here

function wsclient_ui_theme in Web service client 7

Implements hook_theme().

File

wsclient_ui/wsclient_ui.module, line 61
Web service client UI - module file.

Code

function wsclient_ui_theme() {
  return array(
    'wsclient_ui_parameter_form' => array(
      'render element' => 'element',
      'file' => 'wsclient_ui.inc',
    ),
    'wsclient_ui_header_form' => array(
      'render element' => 'element',
      'file' => 'wsclient_ui.inc',
    ),
    'wsclient_ui_property_form' => array(
      'render element' => 'element',
      'file' => 'wsclient_ui.inc',
    ),
    'wsclient_ui_global_parameter_form' => array(
      'render element' => 'element',
      'file' => 'wsclient_ui.inc',
    ),
    'wsclient_ui_global_header_parameter_form' => array(
      'render element' => 'element',
      'file' => 'wsclient_ui.inc',
    ),
  );
}