You are here

public function StreamWrapperManager::addStreamWrapper in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/StreamWrapper/StreamWrapperManager.php \Drupal\Core\StreamWrapper\StreamWrapperManager::addStreamWrapper()

Adds a stream wrapper.

Internal use only.

Parameters

string $service_id: The service id.

string $class: The stream wrapper class.

string $scheme: The scheme for which the wrapper should be registered.

File

core/lib/Drupal/Core/StreamWrapper/StreamWrapperManager.php, line 153
Contains \Drupal\Core\StreamWrapper\StreamWrapperManager.

Class

StreamWrapperManager
Provides a StreamWrapper manager.

Namespace

Drupal\Core\StreamWrapper

Code

public function addStreamWrapper($service_id, $class, $scheme) {
  $this->info[$scheme] = array(
    'class' => $class,
    'type' => $class::getType(),
    'service_id' => $service_id,
  );
}