public function PrivateS3fsStream::getName in S3 File System 4.0.x
Same name and namespace in other branches
- 8.3 src/StreamWrapper/PrivateS3fsStream.php \Drupal\s3fs\StreamWrapper\PrivateS3fsStream::getName()
- 8.2 src/StreamWrapper/PrivateS3fsStream.php \Drupal\s3fs\StreamWrapper\PrivateS3fsStream::getName()
Returns the name of the stream wrapper for use in the UI.
Return value
string The stream wrapper name.
Overrides S3fsStream::getName
File
- src/
StreamWrapper/ PrivateS3fsStream.php, line 18
Class
- PrivateS3fsStream
- Defines a Drupal s3fs stream wrapper class for use with private scheme.
Namespace
Drupal\s3fs\StreamWrapperCode
public function getName() {
return $this
->t('Private files (s3fs)');
}