function videoftp_menu in Video 6.4
Same name and namespace in other branches
- 6.5 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 callback' => 'videoftp_edit_access',
'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;
}