public function DummyRemoteStreamWrapper::getDescription in Drupal 10
Same name and namespace in other branches
- 8 core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteStreamWrapper.php \Drupal\file_test\StreamWrapper\DummyRemoteStreamWrapper::getDescription()
- 9 core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteStreamWrapper.php \Drupal\file_test\StreamWrapper\DummyRemoteStreamWrapper::getDescription()
Returns the description of the stream wrapper for use in the UI.
Return value
string The stream wrapper description.
Overrides PublicStream::getDescription
1 method overrides DummyRemoteStreamWrapper::getDescription()
- DummyRemoteReadOnlyStreamWrapper::getDescription in core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyRemoteReadOnlyStreamWrapper.php - Returns the description of the stream wrapper for use in the UI.
File
- core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyRemoteStreamWrapper.php, line 26
Class
- DummyRemoteStreamWrapper
- Helper class for testing the stream wrapper registry.
Namespace
Drupal\file_test\StreamWrapperCode
public function getDescription() {
return t('Dummy wrapper for testing (remote).');
}