function hook_s3fs_url_settings_alter in S3 File System 7
Same name and namespace in other branches
- 8.3 s3fs.api.php \hook_s3fs_url_settings_alter()
- 8.2 s3fs.api.php \hook_s3fs_url_settings_alter()
- 7.3 s3fs.api.php \hook_s3fs_url_settings_alter()
- 7.2 s3fs.api.php \hook_s3fs_url_settings_alter()
- 4.0.x s3fs.api.php \hook_s3fs_url_settings_alter()
Alters the format and options used when creating an external URL.
For example the URL can be a URL directly to the file, or can be a URL to a torrent. In addition, it can be authenticated (time limited), and in that case a save-as can be forced.
Parameters
array $url_settings: Associative array of URL settings:
- 'torrent': (boolean) Should the file should be sent via BitTorrent?
- 'presigned_url': (boolean) Triggers use of an authenticated URL.
- 'timeout': (int) Time in seconds before a pre-signed URL times out.
- 'api_args': array of additional arguments to the getObject() function: http://docs.aws.amazon.com/aws-sdk-php/latest/class-Aws.S3.S3Client.html...
string $s3_file_path: The path to the file within your S3 bucket.
Return value
array The modified array of configuration items.
1 invocation of hook_s3fs_url_settings_alter()
- S3fsStreamWrapper::getExternalUrl in ./
S3fsStreamWrapper.inc - Returns a web accessible URL for the resource.
File
- ./
s3fs.api.php, line 35 - This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.
Code
function hook_s3fs_url_settings_alter(&$url_settings, $s3_file_path) {
// An example of what you might want to do with this hook.
if ($s3_file_path == 'myfile.jpg') {
$url_settings['presigned_url'] = TRUE;
$url_settings['timeout'] = 10;
}
}