You are here

function theme_text_textarea in Content Construction Kit (CCK) 6

Same name in this branch
  1. 6 examples/example_field.php \theme_text_textarea()
  2. 6 modules/text/text.module \theme_text_textarea()
Same name and namespace in other branches
  1. 6.3 modules/text/text.module \theme_text_textarea()
  2. 6.2 modules/text/text.module \theme_text_textarea()

File

examples/example_field.php, line 683
These hooks are defined by field modules, modules that define a new kind of field for insertion in a content type.

Code

function theme_text_textarea($element) {
  return $element['#children'];
}