function qformat_coursetestmanager::deletedatabase in Quiz 6.6
Same name and namespace in other branches
- 6.5 includes/moodle/question/format/coursetestmanager/format.php \qformat_coursetestmanager::deletedatabase()
1 call to qformat_coursetestmanager::deletedatabase()
- qformat_coursetestmanager::importprocess in includes/
moodle/ question/ format/ coursetestmanager/ format.php - Process the file This method should not normally be overidden
File
- includes/
moodle/ question/ format/ coursetestmanager/ format.php, line 293
Class
Code
function deletedatabase($filename) {
if (!$this
->fulldelete($filename)) {
echo "<br />Error: Could not delete: {$filename}";
return false;
}
return true;
}