You are here

function number_custom_formatters_number_integer_prepare in Custom Formatters 6

Implements hook_custom_formatters_field_prepare().

File

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

Code

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