function field_theme

Implements hook_theme().

Related topics

File

drupal/core/modules/field/field.module, line 170
Attach custom data fields to Drupal entities.

Code

function field_theme() {
  return array(
    'field' => array(
      'render element' => 'element',
    ),
    'field_multiple_value_form' => array(
      'render element' => 'element',
    ),
  );
}