public function S3fsStreamWrapper::dir_closedir in S3 File System 7.2
Same name and namespace in other branches
- 7 S3fsStreamWrapper.inc \S3fsStreamWrapper::dir_closedir()
Support for closedir().
Return value
bool Always returns TRUE.
Overrides StreamWrapperInterface::dir_closedir
See also
http://php.net/manual/en/streamwrapper.dir-closedir.php
File
- ./
S3fsStreamWrapper.inc, line 1145 - Drupal stream wrapper implementation for S3 File System.
Class
- S3fsStreamWrapper
- The stream wrapper class.
Code
public function dir_closedir() {
$this
->_debug("dir_closedir() called.");
unset($this->dir);
return TRUE;
}