You are here

function weight_field_widget_info in Weight 7.3

Implements hook_field_widget_info().

File

./weight.module, line 29
Provides a weight field that allows entities to be ordered.

Code

function weight_field_widget_info() {
  return array(
    'weight_selector' => array(
      'label' => t('Weight Selector'),
      'field types' => array(
        'weight',
      ),
    ),
  );
}