You are here

function text_widget_info in Content Construction Kit (CCK) 5

Same name and namespace in other branches
  1. 6.3 modules/text/text.module \text_widget_info()
  2. 6 examples/simple_field.php \text_widget_info()
  3. 6 examples/example_field.php \text_widget_info()
  4. 6 modules/text/text.module \text_widget_info()
  5. 6.2 modules/text/text.module \text_widget_info()

Implementation of hook_widget_info().

File

./text.module, line 253
Defines simple text field types.

Code

function text_widget_info() {
  return array(
    'text' => array(
      'label' => t('Text Field'),
      'field types' => array(
        'text',
      ),
    ),
  );
}