You are here

function videoftp_menu in Video 6.5

Same name and namespace in other branches
  1. 6.4 types/videoftp/videoftp.module \videoftp_menu()

File

types/videoftp/videoftp.module, line 13

Code

function videoftp_menu() {
  $items = array();
  $items['videoftp/ahah/%/%/%'] = array(
    'page callback' => 'videoftp_js',
    'page arguments' => array(
      2,
      3,
      4,
    ),
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  $items['videoftp/progress'] = array(
    'page callback' => 'videoftp_progress',
    'access arguments' => array(
      'access content',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}