You are here

function ajax_markup_menu in Ajax markup 7

Same name and namespace in other branches
  1. 6 ajax_markup.module \ajax_markup_menu()

Implements hook_menu().

File

./ajax_markup.module, line 6

Code

function ajax_markup_menu() {
  $items = array();
  $items['ajax-markup'] = array(
    'page callback' => 'ajax_markup',
    'access callback' => 'ajax_markup_access',
    'type' => MENU_CALLBACK,
  );
  return $items;
}