function text_theme in Content Construction Kit (CCK) 6
Same name in this branch
- 6 examples/simple_field.php \text_theme()
- 6 examples/example_field.php \text_theme()
- 6 modules/text/text.module \text_theme()
Same name and namespace in other branches
- 6.3 modules/text/text.module \text_theme()
- 6.2 modules/text/text.module \text_theme()
Implementation of hook_theme().
File
- examples/
example_field.php, line 75 - These hooks are defined by field modules, modules that define a new kind of field for insertion in a content type.
Code
function text_theme() {
return array(
'text_textarea' => array(
'arguments' => array(
'element' => NULL,
),
),
'text_textfield' => array(
'arguments' => array(
'element' => NULL,
),
),
);
}