protected function ImportTrainingForm::prepareTemporary in Opigno module 8
Same name and namespace in other branches
- 3.x src/Form/ImportTrainingForm.php \Drupal\opigno_module\Form\ImportTrainingForm::prepareTemporary()
Prepare temporary folder.
1 call to ImportTrainingForm::prepareTemporary()
- ImportTrainingForm::submitForm in src/
Form/ ImportTrainingForm.php - Form submission handler.
File
- src/
Form/ ImportTrainingForm.php, line 387
Class
- ImportTrainingForm
- Import Course form.
Namespace
Drupal\opigno_module\FormCode
protected function prepareTemporary() {
// Prepare folder.
$this->fileSystem
->deleteRecursive($this->tmp);
$this->fileSystem
->prepareDirectory($this->tmp, FileSystemInterface::MODIFY_PERMISSIONS | FileSystemInterface::CREATE_DIRECTORY);
}