class DummyRemoteReadOnlyStreamWrapper
Same name and namespace in other branches
- 11.x core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteReadOnlyStreamWrapper.php \Drupal\file_test\StreamWrapper\DummyRemoteReadOnlyStreamWrapper
- 9 core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteReadOnlyStreamWrapper.php \Drupal\file_test\StreamWrapper\DummyRemoteReadOnlyStreamWrapper
- 8.9.x core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteReadOnlyStreamWrapper.php \Drupal\file_test\StreamWrapper\DummyRemoteReadOnlyStreamWrapper
- main core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteReadOnlyStreamWrapper.php \Drupal\file_test\StreamWrapper\DummyRemoteReadOnlyStreamWrapper
Dummy read-only remote stream wrapper (dummy-remote-readonly://).
Hierarchy
- class \Drupal\Core\StreamWrapper\LocalStream implements \Drupal\Core\StreamWrapper\StreamWrapperInterface
- class \Drupal\Core\StreamWrapper\PublicStream extends \Drupal\Core\StreamWrapper\LocalStream
- class \Drupal\file_test\StreamWrapper\DummyRemoteStreamWrapper extends \Drupal\Core\StreamWrapper\PublicStream
- class \Drupal\file_test\StreamWrapper\DummyRemoteReadOnlyStreamWrapper extends \Drupal\file_test\StreamWrapper\DummyRemoteStreamWrapper
- class \Drupal\file_test\StreamWrapper\DummyRemoteStreamWrapper extends \Drupal\Core\StreamWrapper\PublicStream
- class \Drupal\Core\StreamWrapper\PublicStream extends \Drupal\Core\StreamWrapper\LocalStream
Expanded class hierarchy of DummyRemoteReadOnlyStreamWrapper
1 file declares its use of DummyRemoteReadOnlyStreamWrapper
- ImageStyleCustomStreamWrappersTest.php in core/
modules/ image/ tests/ src/ Kernel/ ImageStyleCustomStreamWrappersTest.php
File
-
core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyRemoteReadOnlyStreamWrapper.php, line 10
Namespace
Drupal\file_test\StreamWrapperView source
class DummyRemoteReadOnlyStreamWrapper extends DummyRemoteStreamWrapper {
/**
* {@inheritdoc}
*/
public static function getType() {
return StreamWrapperInterface::READ_VISIBLE;
}
/**
* {@inheritdoc}
*/
public function getName() {
return t('Dummy remote read-only files');
}
/**
* {@inheritdoc}
*/
public function getDescription() {
return t('Dummy remote read-only stream wrapper for testing.');
}
}
Members
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.