Skip to content
Snippets Groups Projects
Commit eb807e70 authored by Angie Byron's avatar Angie Byron
Browse files

#645776 follow-up by jhodgdon and matason: Added missing Number module help.

parent 6151cbde
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -6,6 +6,19 @@
* Defines numeric field types.
*/
/**
* Implements hook_help().
*/
function number_help($path, $arg) {
switch ($path) {
case 'admin/help#number':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Number module defines various numeric field types for the Field module. Numbers can be in integer, decimal, or floating-point form, and they can be formatted 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;
}
}
/**
* Implements hook_field_info().
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment