interface RemoteStreamWrapperInterface in Remote Stream Wrapper 8
Hierarchy
- interface \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface
- interface \Drupal\Core\StreamWrapper\StreamWrapperInterface
- interface \Drupal\remote_stream_wrapper\StreamWrapper\RemoteStreamWrapperInterface
- interface \Drupal\Core\StreamWrapper\StreamWrapperInterface
Expanded class hierarchy of RemoteStreamWrapperInterface
All classes that implement RemoteStreamWrapperInterface
File
- src/
StreamWrapper/ RemoteStreamWrapperInterface.php, line 7
Namespace
Drupal\remote_stream_wrapper\StreamWrapperView source
interface RemoteStreamWrapperInterface extends StreamWrapperInterface {
/**
* Refers to a remote file system location.
*
* @todo Investigate if we can rely on using this bit.
*/
const REMOTE = 0x2;
/**
* Visible and readable using remote files.
*/
const REMOTE_NORMAL = 0x16;
/**
* Perform an HTTP request for the current URI.
*
* @param string $method
* The HTTP method.
*
* @return \Psr\Http\Message\ResponseInterface
* The HTTP response object.
*
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function request($method = 'GET');
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpStreamWrapperInterface:: |
public | function | 1 | |
PhpStreamWrapperInterface:: |
public | function | 1 | |
PhpStreamWrapperInterface:: |
public | function | 1 | |
PhpStreamWrapperInterface:: |
public | function | 1 | |
PhpStreamWrapperInterface:: |
public | function | 2 | |
PhpStreamWrapperInterface:: |
public | function | 2 | |
PhpStreamWrapperInterface:: |
public | function | 2 | |
PhpStreamWrapperInterface:: |
public | function | Retrieve the underlying stream resource. | 1 |
PhpStreamWrapperInterface:: |
public | function | Closes stream. | 1 |
PhpStreamWrapperInterface:: |
public | function | 1 | |
PhpStreamWrapperInterface:: |
public | function | 2 | |
PhpStreamWrapperInterface:: |
public | function | 2 | |
PhpStreamWrapperInterface:: |
public | function | Sets metadata on the stream. | 2 |
PhpStreamWrapperInterface:: |
public | function | 2 | |
PhpStreamWrapperInterface:: |
public | function | 1 | |
PhpStreamWrapperInterface:: |
public | function | Seeks to specific location in a stream. | 1 |
PhpStreamWrapperInterface:: |
public | function | Change stream options. | 1 |
PhpStreamWrapperInterface:: |
public | function | 1 | |
PhpStreamWrapperInterface:: |
public | function | 1 | |
PhpStreamWrapperInterface:: |
public | function | Truncate stream. | 2 |
PhpStreamWrapperInterface:: |
public | function | 2 | |
PhpStreamWrapperInterface:: |
public | function | 2 | |
PhpStreamWrapperInterface:: |
public | function | 1 | |
RemoteStreamWrapperInterface:: |
constant | Refers to a remote file system location. | ||
RemoteStreamWrapperInterface:: |
constant | Visible and readable using remote files. | ||
RemoteStreamWrapperInterface:: |
public | function | Perform an HTTP request for the current URI. | 1 |
StreamWrapperInterface:: |
constant | A filter that matches all wrappers. | ||
StreamWrapperInterface:: |
public | function | Gets the name of the directory from a given path. | 1 |
StreamWrapperInterface:: |
public | function | Returns the description of the stream wrapper for use in the UI. | 6 |
StreamWrapperInterface:: |
public | function | Returns a web accessible URL for the resource. | 6 |
StreamWrapperInterface:: |
public | function | Returns the name of the stream wrapper for use in the UI. | 6 |
StreamWrapperInterface:: |
public static | function | Returns the type of stream wrapper. | 1 |
StreamWrapperInterface:: |
public | function | Returns the stream resource URI. | 2 |
StreamWrapperInterface:: |
constant | Defines the stream wrapper bit flag for a hidden file. | ||
StreamWrapperInterface:: |
constant | Refers to a local file system location. | ||
StreamWrapperInterface:: |
constant | Hidden, readable and writable using local files. | ||
StreamWrapperInterface:: |
constant | Visible, readable and writable using local files. | ||
StreamWrapperInterface:: |
constant | This is the default 'type' flag. This does not include StreamWrapperInterface::LOCAL, because PHP grants a greater trust level to local files (for example, they can be used in an "include" statement, regardless of the… | ||
StreamWrapperInterface:: |
constant | Wrapper is readable (almost always true). | ||
StreamWrapperInterface:: |
constant | Visible and read-only. | ||
StreamWrapperInterface:: |
public | function | Returns canonical, absolute path of the resource. | 1 |
StreamWrapperInterface:: |
public | function | Sets the absolute stream resource URI. | 2 |
StreamWrapperInterface:: |
constant | Exposed in the UI and potentially web accessible. | ||
StreamWrapperInterface:: |
constant | Wrapper is writable. | ||
StreamWrapperInterface:: |
constant | Visible, readable and writable. |