You are here

public function StreamWrapperManager::register 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::register()

Registers the tagged stream wrappers.

Internal use only.

File

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

Class

StreamWrapperManager
Provides a StreamWrapper manager.

Namespace

Drupal\Core\StreamWrapper

Code

public function register() {
  foreach ($this->info as $scheme => $info) {
    $this
      ->registerWrapper($scheme, $info['class'], $info['type']);
  }
}