public function PublicStream::getName in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/StreamWrapper/PublicStream.php \Drupal\Core\StreamWrapper\PublicStream::getName()
Returns the name of the stream wrapper for use in the UI.
Return value
string The stream wrapper name.
Overrides StreamWrapperInterface::getName
1 method overrides PublicStream::getName()
- DummyRemoteStreamWrapper::getName in core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyRemoteStreamWrapper.php - Returns the name of the stream wrapper for use in the UI.
File
- core/
lib/ Drupal/ Core/ StreamWrapper/ PublicStream.php, line 33 - Contains \Drupal\Core\StreamWrapper\PublicStream.
Class
- PublicStream
- Defines a Drupal public (public://) stream wrapper class.
Namespace
Drupal\Core\StreamWrapperCode
public function getName() {
return t('Public files');
}