function hook_s3fs_upload_params_alter in S3 File System 7
Same name and namespace in other branches
- 8.3 s3fs.api.php \hook_s3fs_upload_params_alter()
- 8.2 s3fs.api.php \hook_s3fs_upload_params_alter()
- 7.3 s3fs.api.php \hook_s3fs_upload_params_alter()
- 7.2 s3fs.api.php \hook_s3fs_upload_params_alter()
- 4.0.x s3fs.api.php \hook_s3fs_upload_params_alter()
Alters the S3 file parameters when uploading an object.
Parameters
array $upload_params: Associative array of upload settings
See also
http://docs.aws.amazon.com/aws-sdk-php/latest/class-Aws.S3.S3Client.html...
1 invocation of hook_s3fs_upload_params_alter()
- S3fsStreamWrapper::stream_flush in ./
S3fsStreamWrapper.inc - Support for fflush(). Flush current cached stream data to a file in S3.
File
- ./
s3fs.api.php, line 50 - 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_upload_params_alter(&$upload_params) {
if (strpos($upload_params['Key'], 'private/') !== FALSE) {
$upload_params['ACL'] = 'private';
}
}