function download_menu in Download 7
Same name and namespace in other branches
- 7.2 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,
),
'access arguments' => array(
'see download link',
),
'type' => MENU_CALLBACK,
);
return $items;
}