function filefield_source_remote_menu in FileField Sources 7
Same name and namespace in other branches
- 6 sources/remote.inc \filefield_source_remote_menu()
Implements hook_menu().
File
- sources/
remote.inc, line 35 - A FileField extension to allow referencing of existing files.
Code
function filefield_source_remote_menu() {
$items = array();
$items['file/remote/progress/%/%/%/%'] = array(
'page callback' => 'filefield_source_remote_progress',
'page arguments' => array(
3,
4,
5,
6,
),
'access callback' => TRUE,
'file' => 'sources/remote.inc',
'type' => MENU_CALLBACK,
);
return $items;
}