public function ThemeStream::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/ ThemeStream.php, line 46
Class
- ThemeStream
- Defines the read-only theme:// stream wrapper for theme files.
Namespace
Drupal\system_stream_wrapper\StreamWrapperCode
public function getDescription() {
return $this
->t('Local files stored under theme directory.');
}