function bigint_field_widget_info in Big Integer 7
Implements hook_field_widget_info().
File
- ./
bigint.module, line 254 - Defines numeric field types.
Code
function bigint_field_widget_info() {
return array(
'number_bigint' => array(
'label' => t('BigInt field'),
'field types' => array(
'number_bigint',
),
),
);
}