public function LibraryStream::getDescription in System stream wrapper 8
Returns the description of the stream wrapper for use in the UI.
Return value
string The stream wrapper description.
Overrides StreamWrapperInterface::getDescription
File
- src/
StreamWrapper/ LibraryStream.php, line 54
Class
- LibraryStream
- Defines the read-only library:// stream wrapper for library files.
Namespace
Drupal\system_stream_wrapper\StreamWrapperCode
public function getDescription() {
return $this
->t('Local files stored under the libraries directory.');
}