class DummyExternalReadOnlyWrapper

Helper class for testing the stream wrapper registry.

Dummy external stream wrapper implementation (dummy-external-readonly://).

Hierarchy

Expanded class hierarchy of DummyExternalReadOnlyWrapper

1 string reference to 'DummyExternalReadOnlyWrapper'
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 DummyExternalReadOnlyWrapper
stream_wrapper.dummy_external_readonly in core/modules/file/tests/file_test/file_test.services.yml
Drupal\file_test\StreamWrapper\DummyExternalReadOnlyWrapper

File

core/modules/file/tests/file_test/src/StreamWrapper/DummyExternalReadOnlyWrapper.php, line 13

Namespace

Drupal\file_test\StreamWrapper
View source
class DummyExternalReadOnlyWrapper extends ReadOnlyStream {
  
  /**
   * {@inheritdoc}
   */
  public static function getType() {
    return StreamWrapperInterface::READ_VISIBLE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getName() {
    return t('Dummy external stream wrapper (readonly)');
  }
  
  /**
   * {@inheritdoc}
   */
  public function getDescription() {
    return t('Dummy external read-only stream wrapper for testing.');
  }
  
  /**
   * {@inheritdoc}
   */
  public function getExternalUrl() {
    [, $target] = explode('://', $this->uri, 2);
    return 'https://www.dummy-external-readonly.com/' . $target;
  }
  
  /**
   * {@inheritdoc}
   */
  public function realpath() {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function dirname($uri = NULL) {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function dir_closedir() {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function dir_opendir($path, $options) {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function dir_readdir() {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function dir_rewinddir() {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function stream_cast($cast_as) {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function stream_close() {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function stream_eof() {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function stream_read($count) {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function stream_seek($offset, $whence = SEEK_SET) {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function stream_set_option($option, $arg1, $arg2) {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function stream_stat() {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function stream_tell() {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function url_stat($path, $flags) {
    return FALSE;
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.