You are here

public function StreamWrapperManagerInterface::registerWrapper in Zircon Profile 8

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

Registers stream wrapper with PHP.

Parameters

string $scheme: The scheme of the stream wrapper.

string $class: The class of the stream wrapper.

int $type: The type of the stream wrapper.

1 method overrides StreamWrapperManagerInterface::registerWrapper()
StreamWrapperManager::registerWrapper in core/lib/Drupal/Core/StreamWrapper/StreamWrapperManager.php
Registers stream wrapper with PHP.

File

core/lib/Drupal/Core/StreamWrapper/StreamWrapperManagerInterface.php, line 175
Contains \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface.

Class

StreamWrapperManagerInterface
Provides a StreamWrapper manager.

Namespace

Drupal\Core\StreamWrapper

Code

public function registerWrapper($scheme, $class, $type);