You are here

function format_number_perm in Format Number API 6

Implementation of hook_perm().

File

./format_number.module, line 29
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_perm() {
  return array(
    'configure default number format',
  );
}