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