StreamWrapperInterface::LOCAL_NORMAL

Visible, readable and writeable using local files. File core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php, line 96 Class StreamWrapperInterface Defines a Drupal stream wrapper extension. Namespace Drupal\Core\StreamWrapper Code const LOCAL_NORMAL = 0x001D;

StreamWrapperInterface::HIDDEN

Defines the stream wrapper bit flag for a hidden file. This is not visible in the UI or accessible via web, but readable and writable; for instance, the temporary directory for file uploads. File core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php, line 67 Class StreamWrapperInterface Defines a Drupal stream wrapper extension. Namespace Drupal\Core\StreamWrapper Code const HIDDEN = 0x000C;

StreamWrapperInterface::getDescription

public StreamWrapperInterface::getDescription() Returns the description of the stream wrapper for use in the UI. Return value string The stream wrapper description. File core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php, line 119 Class StreamWrapperInterface Defines a Drupal stream wrapper extension. Namespace Drupal\Core\StreamWrapper Code public function getDescription();

StreamWrapperInterface::getExternalUrl

public StreamWrapperInterface::getExternalUrl() Returns a web accessible URL for the resource. This function should return a URL that can be embedded in a web page and accessed from a browser. For example, the external URL of "youtube://xIpLd0WQKCY" might be "http://www.youtube.com/watch?v=xIpLd0WQKCY". Return value string Returns a string containing a web accessible URL for the resource. File core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php, line 151 Class StreamWrapperInterf

StreamWrapperInterface::getName

public StreamWrapperInterface::getName() Returns the name of the stream wrapper for use in the UI. Return value string The stream wrapper name. File core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php, line 111 Class StreamWrapperInterface Defines a Drupal stream wrapper extension. Namespace Drupal\Core\StreamWrapper Code public function getName();

StreamWrapperInterface::getType

public static StreamWrapperInterface::getType() Returns the type of stream wrapper. Return value int File core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php, line 103 Class StreamWrapperInterface Defines a Drupal stream wrapper extension. Namespace Drupal\Core\StreamWrapper Code public static function getType();

StreamWrapperInterface::getUri

public StreamWrapperInterface::getUri() Returns the stream resource URI. Return value string Returns the current URI of the instance. File core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php, line 138 Class StreamWrapperInterface Defines a Drupal stream wrapper extension. Namespace Drupal\Core\StreamWrapper Code public function getUri();

StreamWrapperInterface

Defines a Drupal stream wrapper extension. Provides a Drupal interface and classes to implement PHP stream wrappers for public, private, and temporary files. Extends the StreamWrapperInterface with methods expected by Drupal stream wrapper classes. A stream wrapper is an abstraction of a file system that allows Drupal to use the same set of methods to access both local files and remote resources. Note that PHP 5.2 fopen() only supports URIs of the form "scheme://target" despite the fact that ac

StreamWrapperInterface::dirname

public StreamWrapperInterface::dirname($uri = NULL) Gets the name of the directory from a given path. This method is usually accessed through drupal_dirname(), which wraps around the normal PHP dirname() function, which does not support stream wrappers. Parameters string $uri: An optional URI. Return value string A string containing the directory name, or FALSE if not applicable. See also drupal_dirname() File core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php, line 182 Class

StreamWrapperInterface::ALL

A filter that matches all wrappers. File core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php, line 35 Class StreamWrapperInterface Defines a Drupal stream wrapper extension. Namespace Drupal\Core\StreamWrapper Code const ALL = 0x0000;