You are here

function number_custom_formatters_number_decimal_prepare in Custom Formatters 6

Implements hook_custom_formatters_field_prepare().

File

includes/content.inc, line 10
Provides Custom Formatters integration with the CCK module.

Code

function number_custom_formatters_number_decimal_prepare() {
  return array(
    'min' => 1,
    'max' => NULL,
    'precision' => NULL,
    'scale' => NULL,
  );
}