function FileTranferTest::_buildFakeModule
1 call to FileTranferTest::_buildFakeModule()
- FileTranferTest::testJail in modules/
simpletest/ tests/ filetransfer.test
File
-
modules/
simpletest/ tests/ filetransfer.test, line 38
Class
Code
function _buildFakeModule() {
$location = 'temporary://fake';
if (is_dir($location)) {
$ret = 0;
$output = array();
exec('rm -Rf ' . escapeshellarg($location), $output, $ret);
if ($ret != 0) {
throw new Exception('Error removing fake module directory.');
}
}
$files = $this->_getFakeModuleFiles();
$this->_writeDirectory($location, $files);
return $location;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.