You are here

function theme_cmis_field_widget in CMIS API 6.4

Same name and namespace in other branches
  1. 6.3 cmis_field/cmis_field.module \theme_cmis_field_widget()

Function to theme the widget form

Parameters

$element:

Return value

string - themed output of the widget

File

cmis_field/cmis_field.module, line 188

Code

function theme_cmis_field_widget(&$element) {
  return theme('form_element', $element, $element['#children']);
}