You are here

function money_conversion_dialog_menu in Money field 6

Implementation of hook_menu().

File

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

Code

function money_conversion_dialog_menu() {
  $items = array();
  $items['money-conversion-dialog'] = array(
    'title' => 'Money conversion dialog (ajax)',
    'access arguments' => array(
      'use money conversion dialog',
    ),
    'page callback' => 'money_conversion_dialog_ajax_callback',
    'page arguments' => array(
      1,
      2,
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}