public function PublicS3fsStream::getName in S3 File System 8.3
Same name and namespace in other branches
- 8.2 src/StreamWrapper/PublicS3fsStream.php \Drupal\s3fs\StreamWrapper\PublicS3fsStream::getName()
 - 4.0.x src/StreamWrapper/PublicS3fsStream.php \Drupal\s3fs\StreamWrapper\PublicS3fsStream::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/ PublicS3fsStream.php, line 16  
Class
- PublicS3fsStream
 - Defines a Drupal s3fs stream wrapper class for use with public scheme.
 
Namespace
Drupal\s3fs\StreamWrapperCode
public function getName() {
  return $this
    ->t('Public files (s3fs)');
}