You are here

function format_number_help in Format Number API 6

Same name and namespace in other branches
  1. 7 format_number.module \format_number_help()

Implementation of hook_help().

File

./format_number.module, line 19
This module provides a method to configure number formats (site default and user defined) with configurable decimal point and thousand separators. It also exposes several functions that can be used by other contributed or custom modules to display…

Code

function format_number_help($path, $arg) {
  switch ($path) {
    case 'admin/help#format_number':
      return '<p>' . t('The <em>Format Number API</em> module provides a method to configure number formats (site default and user defined) with configurable decimal point and thousand separators. It also exposes several functions that can be used by other contributed or custom modules to display numbers accordingly.') . '</p>';
  }
}