You are here

function theme_name_element in Name Field 7

Same name and namespace in other branches
  1. 6 name.module \theme_name_element()

Custom theme callback for the name_element.

1 theme call to theme_name_element()
name_element_info in ./name.module
Implements hook_element_info().

File

./name.module, line 509
Defines an API for displaying and inputing names.

Code

function theme_name_element($variables) {
  $element = $variables['element'];
  return drupal_render_children($element);
}