public function S3fsStream::getDescription in S3 File System 8.2
Same name and namespace in other branches
- 8.3 src/StreamWrapper/S3fsStream.php \Drupal\s3fs\StreamWrapper\S3fsStream::getDescription()
- 4.0.x src/StreamWrapper/S3fsStream.php \Drupal\s3fs\StreamWrapper\S3fsStream::getDescription()
Returns the description of the stream wrapper for use in the UI.
Return value
string The stream wrapper description.
Overrides StreamWrapperInterface::getDescription
2 methods override S3fsStream::getDescription()
- PrivateS3fsStream::getDescription in src/
StreamWrapper/ PrivateS3fsStream.php - Returns the description of the stream wrapper for use in the UI.
- PublicS3fsStream::getDescription in src/
StreamWrapper/ PublicS3fsStream.php - Returns the description of the stream wrapper for use in the UI.
File
- src/
StreamWrapper/ S3fsStream.php, line 277
Class
- S3fsStream
- Defines a Drupal s3fs (s3fs://) stream wrapper class.
Namespace
Drupal\s3fs\StreamWrapperCode
public function getDescription() {
return $this
->t('Amazon Simple Storage Service.');
}