You are here

FileFieldPathsDummyReadOnlyStreamWrapper.php in File (Field) Paths 8

File

tests/filefield_paths_test/src/StreamWrapper/FileFieldPathsDummyReadOnlyStreamWrapper.php
View source
<?php

namespace Drupal\filefield_paths_test\StreamWrapper;

use Drupal\Component\Utility\UrlHelper;
use Drupal\Core\StreamWrapper\PublicStream;
use Drupal\file_test\StreamWrapper\DummyReadOnlyStreamWrapper;

/**
 * Helper class for testing the stream wrapper registry.
 *
 * Dummy stream wrapper implementation (ffp-dummy-readonly://).
 */
class FileFieldPathsDummyReadOnlyStreamWrapper extends DummyReadOnlyStreamWrapper {

  /**
   * {@inheritdoc}
   */
  public function getName() {
    return t('File (Field) Paths Dummy files (readonly)');
  }

  /**
   * {@inheritdoc}
   */
  public function getDescription() {
    return t('Dummy wrapper for File (Field) Paths simpletest (readonly).');
  }

  /**
   * Override getExternalUrl().
   *
   * Return the HTML URI of a public file.
   */
  public function getExternalUrl() {
    $path = str_replace('\\', '/', $this
      ->getTarget());
    return PublicStream::baseUrl() . '/' . UrlHelper::encodePath($path);
  }

}

Classes

Namesort descending Description
FileFieldPathsDummyReadOnlyStreamWrapper Helper class for testing the stream wrapper registry.