You are here

public function LibraryStream::getName in System stream wrapper 8

Returns the name of the stream wrapper for use in the UI.

Return value

string The stream wrapper name.

Overrides StreamWrapperInterface::getName

File

src/StreamWrapper/LibraryStream.php, line 47

Class

LibraryStream
Defines the read-only library:// stream wrapper for library files.

Namespace

Drupal\system_stream_wrapper\StreamWrapper

Code

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