You are here

function mvf_theme in Measured Value Field 6

Same name and namespace in other branches
  1. 7 mvf.module \mvf_theme()

Implementation of hook_theme().

File

./mvf.module, line 21
Measured Value Field module.

Code

function mvf_theme() {
  return array(
    'mvf_widget' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'mvf_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_mvf_formatter_generic',
    ),
    'mvf_formatter_nozeros' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_mvf_formatter_generic',
    ),
    'mvf_formatter_unformatted' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'mvf_field' => array(
      'arguments' => array(
        'value' => NULL,
        'unit' => NULL,
        'display_options' => NULL,
        'separator' => NULL,
        'range_separator' => NULL,
      ),
    ),
  );
}