function ResourceStreamWrapperManager::wrappers in D7 Media 6
Return the DrupalStreamWrapperManager's wrapper registry.
File
- resource/
ResourceStreamWrapperManager.inc, line 73
Class
- ResourceStreamWrapperManager
- The StreamWrapperManager provides a class for managing and querying user defined stream wrappers in PHP. PHP's internal stream_get_wrappers doesn't return the class registered to handle a stream. We need to be able to find the handler class…
Code
function wrappers() {
return self::$this->wrappers;
}