class DummyRemoteStreamWrapper 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
- 9 core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteStreamWrapper.php \Drupal\file_test\StreamWrapper\DummyRemoteStreamWrapper
Helper class for testing the stream wrapper registry.
Dummy remote stream wrapper implementation (dummy-remote://).
Basically just the public scheme but not returning a local file for realpath.
Hierarchy
- class \Drupal\Core\StreamWrapper\LocalStream implements StreamWrapperInterface
- class \Drupal\Core\StreamWrapper\PublicStream
- class \Drupal\file_test\StreamWrapper\DummyRemoteStreamWrapper
- class \Drupal\Core\StreamWrapper\PublicStream
Expanded class hierarchy of DummyRemoteStreamWrapper
1 string reference to 'DummyRemoteStreamWrapper'
- file_test.services.yml in core/
modules/ file/ tests/ file_test/ file_test.services.yml - core/modules/file/tests/file_test/file_test.services.yml
1 service uses DummyRemoteStreamWrapper
- stream_wrapper.dummy_remote in core/
modules/ file/ tests/ file_test/ file_test.services.yml - Drupal\file_test\StreamWrapper\DummyRemoteStreamWrapper
File
- core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyRemoteStreamWrapper.php, line 14
Namespace
Drupal\file_test\StreamWrapperView source
class DummyRemoteStreamWrapper extends PublicStream {
/**
* {@inheritdoc}
*/
public function getName() {
return t('Dummy files (remote)');
}
/**
* {@inheritdoc}
*/
public function getDescription() {
return t('Dummy wrapper for testing (remote).');
}
public function realpath() {
return FALSE;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DummyRemoteStreamWrapper:: |
public | function |
Returns the description of the stream wrapper for use in the UI. Overrides PublicStream:: |
1 |
DummyRemoteStreamWrapper:: |
public | function |
Returns the name of the stream wrapper for use in the UI. Overrides PublicStream:: |
1 |
DummyRemoteStreamWrapper:: |
public | function |
Returns canonical, absolute path of the resource. Overrides LocalStream:: |
|
LocalStream:: |
public | property | Stream context resource. | |
LocalStream:: |
public | property | A generic resource handle. | |
LocalStream:: |
protected | property | Instance URI (stream). | |
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
private | function | Returns file system service. | |
LocalStream:: |
protected | function | Returns the local writable target of the resource within the stream. | |
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | Since Windows systems do not allow it and it is not needed for most use cases anyway, this method is not supported on local files and will trigger an error and return false. If needed, custom subclasses can provide OS-specific implementations for… | |
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
LocalStream:: |
public | function | ||
PublicStream:: |
public static | function | Returns the base path for public://. | |
PublicStream:: |
public static | function | Finds and returns the base URL for public://. | |
PublicStream:: |
public | function | ||
PublicStream:: |
public | function | ||
PublicStream:: |
protected | function | ||
PublicStream:: |
public static | function | 1 | |
StreamWrapperInterface:: |
constant | A filter that matches all wrappers. | ||
StreamWrapperInterface:: |
constant | Defines the stream wrapper bit flag for a hidden file. | ||
StreamWrapperInterface:: |
constant | Refers to a local file system location. | ||
StreamWrapperInterface:: |
constant | Hidden, readable and writable using local files. | ||
StreamWrapperInterface:: |
constant | Visible, readable and writable using local files. | ||
StreamWrapperInterface:: |
constant | This is the default 'type' flag. This does not include StreamWrapperInterface::LOCAL, because PHP grants a greater trust level to local files (for example, they can be used in an "include" statement, regardless of the… | ||
StreamWrapperInterface:: |
constant | Wrapper is readable (almost always true). | ||
StreamWrapperInterface:: |
constant | Visible and read-only. | ||
StreamWrapperInterface:: |
constant | Exposed in the UI and potentially web accessible. | ||
StreamWrapperInterface:: |
constant | Wrapper is writable. | ||
StreamWrapperInterface:: |
constant | Visible, readable and writable. |