You are here

function file_resup_menu in File Resumable Upload 8

Same name and namespace in other branches
  1. 7 file_resup.module \file_resup_menu()

Implements hook_menu().

File

./file_resup.module, line 26

Code

function file_resup_menu() {
  $items['file_resup/upload'] = array(
    'page callback' => 'file_resup_upload',
    'access arguments' => array(
      'upload via file_resup',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}