function formatted_number_help in Formatted Number 7
Implements hook_help().
File
- ./
formatted_number.module, line 12 - Defines numeric field types where the thousand and decimal separators are inherited from the Format Number API module.
Code
function formatted_number_help($path, $arg) {
switch ($path) {
case 'admin/help#formatted_number':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Formatted Number module defines various numeric field types for the Field module. Numbers can be in integer, decimal, or floating-point form, and they will inherit the format from the Format Number API module when displayed. Number fields can be limited to a specific set of input values or to a range of values. See the <a href="@field-help">Field module help page</a> for more information about fields.', array(
'@field-help' => url('admin/help/field'),
)) . '</p>';
return $output;
}
}