You are here

function range_theme in Range 6

Same name and namespace in other branches
  1. 8 range.module \range_theme()

Implementation of hook_theme().

File

./range.module, line 23
Defines numeric fields within a range of possible values and displays them colored accordingly..

Code

function range_theme() {
  return array(
    'range' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'range_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_range_formatter_generic',
    ),
    'range_formatter_us_0' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_range_formatter_generic',
    ),
    'range_formatter_us_1' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_range_formatter_generic',
    ),
    'range_formatter_us_2' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_range_formatter_generic',
    ),
    'range_formatter_be_0' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_range_formatter_generic',
    ),
    'range_formatter_be_1' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_range_formatter_generic',
    ),
    'range_formatter_fr_0' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_range_formatter_generic',
    ),
    'range_formatter_fr_1' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_range_formatter_generic',
    ),
    'range_formatter_unformatted' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}