public function OEmbedStreamWrapper::stream_stat in oEmbed 7
Same name and namespace in other branches
- 7.0 OEmbedStreamWrapper.inc \OEmbedStreamWrapper::stream_stat()
Support for fstat().
Return value
array An array with file status, or FALSE in case of an error - see fstat() for a description of this array.
Overrides StreamWrapperInterface::stream_stat
1 call to OEmbedStreamWrapper::stream_stat()
- OEmbedStreamWrapper::url_stat in ./
OEmbedStreamWrapper.inc - Support for stat().
File
- ./
OEmbedStreamWrapper.inc, line 280 - Create a oEmbed Stream Wrapper class.
Class
- OEmbedStreamWrapper
- @file Create a oEmbed Stream Wrapper class.
Code
public function stream_stat() {
return $this->_stat;
}