function LocalReadOnlyStream::rmdir
Same name in other branches
- 9 core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php \Drupal\Core\StreamWrapper\LocalReadOnlyStream::rmdir()
- 8.9.x core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php \Drupal\Core\StreamWrapper\LocalReadOnlyStream::rmdir()
- 10 core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php \Drupal\Core\StreamWrapper\LocalReadOnlyStream::rmdir()
Support for rmdir().
Directory will never be deleted as this is a read-only stream wrapper.
Parameters
string $uri: A string containing the URI to the directory to delete.
int $options: A bit mask of STREAM_REPORT_ERRORS.
Return value
bool FALSE as directory will never be deleted.
Overrides LocalStream::rmdir
See also
http://php.net/manual/streamwrapper.rmdir.php
File
-
core/
lib/ Drupal/ Core/ StreamWrapper/ LocalReadOnlyStream.php, line 201
Class
- LocalReadOnlyStream
- Defines a read-only Drupal stream wrapper base class for local files.
Namespace
Drupal\Core\StreamWrapperCode
public function rmdir($uri, $options) {
trigger_error('rmdir() not supported for read-only stream wrappers', E_USER_WARNING);
return FALSE;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.