constant STREAM_WRAPPERS_NORMAL

Stream wrapper type flag -- the default when 'type' is omitted from hook_stream_wrappers(). This does not include STREAM_WRAPPERS_LOCAL, because PHP grants a greater trust level to local files (for example, they can be used in an "include" statement, regardless of the "allow_url_include" setting), so stream wrappers need to explicitly opt-in to this.

1 use of STREAM_WRAPPERS_NORMAL
file_get_stream_wrappers in drupal/core/includes/file.inc
Provides Drupal stream wrapper registry.

File

drupal/core/includes/file.inc, line 78
API for handling file uploads and server file management.

Code

define('STREAM_WRAPPERS_NORMAL', STREAM_WRAPPERS_WRITE_VISIBLE);