You are here

public function VideoRemoteStreamWrapper::dir_readdir in Video 8

Same name and namespace in other branches
  1. 8.2 src/StreamWrapper/VideoRemoteStreamWrapper.php \Drupal\video\StreamWrapper\VideoRemoteStreamWrapper::dir_readdir()

Support for readdir().

Return value

string The next filename, or FALSE if there are no more files in the directory.

Overrides PhpStreamWrapperInterface::dir_readdir

See also

http://php.net/manual/streamwrapper.dir-readdir.php

File

src/StreamWrapper/VideoRemoteStreamWrapper.php, line 210

Class

VideoRemoteStreamWrapper
Defines a video read only stream wrapper class.

Namespace

Drupal\video\StreamWrapper

Code

public function dir_readdir() {
  return readdir($this->handle);
}