You are here

public function ThemeStream::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/ThemeStream.php, line 39

Class

ThemeStream
Defines the read-only theme:// stream wrapper for theme files.

Namespace

Drupal\system_stream_wrapper\StreamWrapper

Code

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