class VimeoStream in Video 8
Same name and namespace in other branches
- 8.2 src/StreamWrapper/VimeoStream.php \Drupal\video\StreamWrapper\VimeoStream
Defines a YouTube (vimeo://) stream wrapper class.
Hierarchy
- class \Drupal\Core\StreamWrapper\ReadOnlyStream implements StreamWrapperInterface
- class \Drupal\video\StreamWrapper\VideoRemoteStreamWrapper
- class \Drupal\video\StreamWrapper\VimeoStream
- class \Drupal\video\StreamWrapper\VideoRemoteStreamWrapper
Expanded class hierarchy of VimeoStream
1 string reference to 'VimeoStream'
1 service uses VimeoStream
File
- src/
StreamWrapper/ VimeoStream.php, line 11
Namespace
Drupal\video\StreamWrapperView source
class VimeoStream extends VideoRemoteStreamWrapper {
protected static $base_url = 'http://www.vimeo.com';
/**
* {@inheritdoc}
*/
public function getName() {
return t('Vimeo');
}
/**
* {@inheritdoc}
*/
public function getDescription() {
return t('Video served by the Vimeo services.');
}
/**
* {@inheritdoc}
*/
public static function baseUrl() {
return self::$base_url;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ReadOnlyStream:: |
public | property | Stream context resource. | |
ReadOnlyStream:: |
public | property | A generic resource handle. | |
ReadOnlyStream:: |
protected | property | Instance URI (stream). | |
ReadOnlyStream:: |
public | function |
Returns the stream resource URI. Overrides StreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Support for mkdir(). Overrides PhpStreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Support for rename(). Overrides PhpStreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Support for rmdir(). Overrides PhpStreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Support for fflush(). Overrides PhpStreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Support for flock(). Overrides PhpStreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Does not change meta data as this is a read-only stream wrapper. Overrides PhpStreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Support for fopen(), file_get_contents(), etc. Overrides PhpStreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Truncate stream. Overrides PhpStreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Support for fwrite(), file_put_contents() etc. Overrides PhpStreamWrapperInterface:: |
|
ReadOnlyStream:: |
public | function |
Support for unlink(). Overrides PhpStreamWrapperInterface:: |
|
StreamWrapperInterface:: |
constant | A filter that matches all wrappers. | ||
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:: |
constant | Exposed in the UI and potentially web accessible. | ||
StreamWrapperInterface:: |
constant | Wrapper is writable. | ||
StreamWrapperInterface:: |
constant | Visible, readable and writable. | ||
VideoRemoteStreamWrapper:: |
protected | property | ||
VideoRemoteStreamWrapper:: |
public static | function | Returns the base path for stream wrapper. | |
VideoRemoteStreamWrapper:: |
public | function |
Gets the name of the directory from a given path. Overrides StreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for closedir(). Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for opendir(). Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for readdir(). Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for rewinddir(). Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function | ||
VideoRemoteStreamWrapper:: |
public | function |
Returns a web accessible URL for the resource. Overrides StreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
protected | function | Returns the canonical absolute path of the URI, if possible. | |
VideoRemoteStreamWrapper:: |
protected | function | Returns the local writable target of the resource within the stream. | |
VideoRemoteStreamWrapper:: |
public static | function |
Returns the type of stream wrapper. Overrides StreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
function |
Returns canonical, absolute path of the resource. Overrides StreamWrapperInterface:: |
||
VideoRemoteStreamWrapper:: |
function |
Sets the absolute stream resource URI. Overrides ReadOnlyStream:: |
||
VideoRemoteStreamWrapper:: |
public | function |
Retrieve the underlying stream resource. Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for fclose(). Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for feof(). Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for fread(), file_get_contents() etc. Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Seeks to specific location in a stream. Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Since Windows systems do not allow it and it is not needed for most use
cases anyway, this method is not supported on local files and will trigger
an error and return false. If needed, custom subclasses can provide
OS-specific implementations for… Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for fstat(). Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for ftell(). Overrides PhpStreamWrapperInterface:: |
|
VideoRemoteStreamWrapper:: |
public | function |
Support for stat(). Overrides PhpStreamWrapperInterface:: |
|
VimeoStream:: |
protected static | property |
Overrides VideoRemoteStreamWrapper:: |
|
VimeoStream:: |
public static | function |
Finds and returns the base URL for read only stream. Overrides VideoRemoteStreamWrapper:: |
|
VimeoStream:: |
public | function |
Returns the description of the stream wrapper for use in the UI. Overrides StreamWrapperInterface:: |
|
VimeoStream:: |
public | function |
Returns the name of the stream wrapper for use in the UI. Overrides StreamWrapperInterface:: |