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