protected function elFinderVolumeDrupal::_rmdir in elFinder file manager 7.2
Same name and namespace in other branches
- 8.2 src/Controller/elFinderVolumeDrupal.php \elFinderVolumeDrupal::_rmdir()
- 7.3 inc/elfinder.drupalfs.driver.inc \elFinderVolumeDrupal::_rmdir()
Remove dir
@author Alexey Sukhotin
Parameters
string $path dir path:
Return value
bool
1 call to elFinderVolumeDrupal::_rmdir()
- elFinderVolumeDrupal::delTree in inc/elfinder.drupalfs.driver.inc 
- Delete dirctory trees and included files.
File
- inc/elfinder.drupalfs.driver.inc, line 228 
- elFinder driver for Drupal filesystem.
Class
- elFinderVolumeDrupal
- @file
Code
protected function _rmdir($path) {
  return @drupal_rmdir($path);
}