You are here

function editor_note_field_widget_info in Editor Notes 7

Implements hook_field_widget_info().

Registers widget for the field.

File

./editor_note.module, line 615
Main functionality for Editor Notes module.

Code

function editor_note_field_widget_info() {
  return array(
    'editor_note_field_widget' => array(
      'label' => t('Editor Notes'),
      'field types' => array(
        'editor_note',
      ),
      'settings' => array(),
      'behaviors' => array(
        'multiple values' => FIELD_BEHAVIOR_DEFAULT,
        'default value' => FIELD_BEHAVIOR_DEFAULT,
      ),
    ),
  );
}