You are here

function money_conversion_dialog_theme in Money field 6

Implementation of hook_theme().

File

modules/money_conversion_dialog/money_conversion_dialog.module, line 83
Provides a 'Click to convert!' addon for Money CCK fields.

Code

function money_conversion_dialog_theme() {
  return array(
    'money_conversion_dialog_formatter_conversion_dialog' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_money_conversion_dialog',
    ),
  );
}