You are here

function download_menu in Download 7.2

Same name and namespace in other branches
  1. 7 download.module \download_menu()

Implements hook_menu().

File

./download.module, line 12
Handles module administration and download link

Code

function download_menu() {
  $items = array();
  $items['download/%/%'] = array(
    'page callback' => 'download_download',
    'page arguments' => array(
      1,
      2,
    ),
    'access arguments' => array(
      'see download link',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}