You are here

function weight_field_formatter_info in Weight 7.3

Implements hook_field_formatter_info().

File

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

Code

function weight_field_formatter_info() {
  return array(
    'weight_integer' => array(
      'label' => t('Default'),
      'field types' => array(
        'weight',
      ),
    ),
  );
}