You are here

public function PrivateS3fsStream::getName in S3 File System 8.3

Same name and namespace in other branches
  1. 8.2 src/StreamWrapper/PrivateS3fsStream.php \Drupal\s3fs\StreamWrapper\PrivateS3fsStream::getName()
  2. 4.0.x 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\StreamWrapper

Code

public function getName() {
  return $this
    ->t('Private files (s3fs)');
}