You are here

function vcardfield_menu in VCard Field 7

File

./vcardfield.module, line 23

Code

function vcardfield_menu() {
  $items = array();
  $items['getvcard/%/%/%'] = array(
    'title' => '',
    'page callback' => 'vcardfield_create_vcard',
    'access callback' => 'user_access',
    'page arguments' => array(
      1,
      2,
      3,
    ),
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}