public function VideoRemoteStreamWrapper::dir_rewinddir in Video 8
Same name and namespace in other branches
- 8.2 src/StreamWrapper/VideoRemoteStreamWrapper.php \Drupal\video\StreamWrapper\VideoRemoteStreamWrapper::dir_rewinddir()
Support for rewinddir().
Return value
bool TRUE on success.
Overrides PhpStreamWrapperInterface::dir_rewinddir
See also
http://php.net/manual/streamwrapper.dir-rewinddir.php
File
- src/
StreamWrapper/ VideoRemoteStreamWrapper.php, line 222
Class
- VideoRemoteStreamWrapper
- Defines a video read only stream wrapper class.
Namespace
Drupal\video\StreamWrapperCode
public function dir_rewinddir() {
rewinddir($this->handle);
// We do not really have a way to signal a failure as rewinddir() does not
// have a return value and there is no way to read a directory handler
// without advancing to the next file.
return TRUE;
}