You are here

function hook_filebrowser_download_manager_info in Filebrowser 6.2

hook_filebrowser_download_manager_info implementation.

Return value

an array of avalaible downlod managers (key/human description)

1 function implements hook_filebrowser_download_manager_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

filebrowser_filebrowser_download_manager_info in ./filebrowser.module
hook_filebrowser_download_manager_info implementation.
1 invocation of hook_filebrowser_download_manager_info()
_filebrowser_file_url in includes/downloads.inc

File

./filebrowser.api.php, line 164
hook_filebrowser_metadata_get implementation. the filebrowser file object to extract metadata from

Code

function hook_filebrowser_download_manager_info() {
  return array(
    'foo' => array(
      'title' => t('Foo download manager'),
      'url_callback' => 'filebrowser_private_download_url',
    ),
  );
}