function FileTranferTest::_writeDirectory
1 call to FileTranferTest::_writeDirectory()
- FileTranferTest::_buildFakeModule in modules/
simpletest/ tests/ filetransfer.test
File
-
modules/
simpletest/ tests/ filetransfer.test, line 54
Class
Code
function _writeDirectory($base, $files = array()) {
mkdir($base);
foreach ($files as $key => $file) {
if (is_array($file)) {
$this->_writeDirectory($base . DIRECTORY_SEPARATOR . $key, $file);
}
else {
//just write the filename into the file
file_put_contents($base . DIRECTORY_SEPARATOR . $file, $file);
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.