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\StreamWrapperCode
public function getName() {
return $this
->t('Library files');
}