35 public function __construct($a_parent_gui, $a_main_obj = null)
38 $component_factory = $DIC[
"component.factory"];
39 $this->testrequest = $DIC->test()->internal()->request();
42 #$this->addFormat('xml', $a_parent_gui->lng->txt('ass_create_export_file'), $this, 'createTestExport'); 43 $this->
addFormat(
'xml', $DIC->language()->txt(
'ass_create_export_file'));
44 $this->
addFormat(
'xmlres', $DIC->language()->txt(
'ass_create_export_file_with_results'), $this,
'createTestExportWithResults');
45 $this->
addFormat(
'csv', $DIC->language()->txt(
'ass_create_export_test_results'), $this,
'createTestResultsExport');
46 $this->
addFormat(
'arc', $DIC->language()->txt(
'ass_create_export_test_archive'), $this,
'createTestArchiveExport');
47 foreach ($component_factory->getActivePluginsInSlot(
"texp") as
$plugin) {
70 public function createTestExportWithResults()
77 $ilAccess = $DIC[
'ilAccess'];
79 $ilCtrl = $DIC[
'ilCtrl'];
81 if (!$ilAccess->checkAccess(
'write',
'', $this->obj->getRefId())) {
82 $this->tpl->setOnScreenMessage(
'info',
"cannot_export_archive",
true);
83 $ilCtrl->redirectByClass(
'iltestexportgui');
87 $test_exp = $expFactory->getExporter(
'xml');
88 $test_exp->setResultExportingEnabledForTestExport(
true);
89 $test_exp->buildExportFile();
90 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
'exp_file_created'),
true);
91 $ilCtrl->redirectByClass(
'iltestexportgui');
97 public function createTestResultsExport()
104 $ilAccess = $DIC[
'ilAccess'];
106 $ilCtrl = $DIC[
'ilCtrl'];
108 if (!$ilAccess->checkAccess(
'write',
'', $this->obj->getRefId())) {
109 $this->tpl->setOnScreenMessage(
'info',
"cannot_export_archive",
true);
110 $ilCtrl->redirectByClass(
'iltestexportgui');
114 $test_exp = $expFactory->getExporter(
'results');
115 $test_exp->buildExportFile();
116 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
'exp_file_created'),
true);
117 $ilCtrl->redirectByClass(
'iltestexportgui');
123 $ilAccess = $DIC[
'ilAccess'];
124 $ilCtrl = $DIC[
'ilCtrl'];
125 $ilDB = $DIC[
'ilDB'];
128 if ($ilAccess->checkAccess(
"write",
"", $this->obj->getRefId())) {
135 $participantData->setActiveIdsFilter(array_keys($allActivesPasses));
136 $participantData->load($this->obj->getTestId());
139 $archiveService->setParticipantData($participantData);
140 $archiveService->archivePassesByActives($allActivesPasses);
142 $test_id = $this->obj->getId();
143 $test_ref = $this->obj->getRefId();
147 $best_solution = $scoring->calculateBestSolutionForTest();
150 if (!is_dir($tmpFileName)) {
154 $directory_name = realpath($tmpFileName);
155 $file_name = $directory_name . DIRECTORY_SEPARATOR .
'Best_Solution.pdf';
159 $archive_exp->handInTestBestSolution($best_solution, $file_name);
162 $archive_exp->updateTestArchive();
163 $archive_exp->compressTestArchive();
165 $this->tpl->setOnScreenMessage(
'info',
"cannot_export_archive",
true);
167 $ilCtrl->redirectByClass(
'iltestexportgui');
173 $ilAccess = $DIC[
'ilAccess'];
175 $ilToolbar = $DIC[
'ilToolbar'];
176 $ilCtrl = $DIC[
'ilCtrl'];
179 if (!$ilAccess->checkAccess(
'write',
'', $this->obj->getRefId())) {
180 $this->tpl->setOnScreenMessage(
'info',
"cannot_export_archive",
true);
181 $ilCtrl->redirectByClass(ilObjTestGUI::class);
184 $ilToolbar->setFormAction($ilCtrl->getFormAction($this));
188 $options[
$f[
"key"]] = $f[
"txt"];
191 $si->setOptions($options);
192 $ilToolbar->addInputItem($si,
true);
193 $ilToolbar->addFormButton(
$lng->
txt(
"exp_create_file"),
"createExportFile");
197 $ilToolbar->addFormButton(
$lng->
txt(
"exp_create_file") .
" (" .
$format[
"txt"] .
")",
"create_" .
$format[
"key"]);
201 $archive_dir = $archiver->getZipExportDirectory();
202 $archive_files = array();
204 if (file_exists($archive_dir) && is_dir($archive_dir)) {
205 $archive_files = scandir($archive_dir);
208 $export_dir = $this->obj->getExportDirectory();
209 $export_files = $this->obj->getExportFiles($export_dir);
211 if (count($export_files) > 0) {
212 foreach ($export_files as $exp_file) {
213 $file_arr = explode(
"__", $exp_file);
214 if ($file_arr[0] == $exp_file) {
218 array_push(
$data, array(
220 'size' => filesize($export_dir .
"/" . $exp_file),
221 'timestamp' => $file_arr[0],
227 if (count($archive_files) > 0) {
228 foreach ($archive_files as $exp_file) {
229 if ($exp_file ==
'.' || $exp_file ==
'..') {
232 $file_arr = explode(
"_", $exp_file);
236 'size' => filesize($archive_dir .
"/" . $exp_file),
237 'timestamp' => $file_arr[4],
244 $table->setSelectAllCheckbox(
"file");
246 $table->addCustomColumn($c[
"txt"], $c[
"obj"], $c[
"func"]);
250 $table->addCustomMultiCommand($c[
"txt"],
"multi_" . $c[
"func"]);
253 $table->resetFormats();
254 foreach ($this->formats as
$format) {
255 $table->addFormat($format[
'key']);
258 $table->setData(
$data);
259 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
'no_manual_feedback_export_info'),
true);
265 $extension = strtoupper(pathinfo($export_file, PATHINFO_EXTENSION));
266 if (in_array($extension, [
'XLSX',
'CSV',
'XLS'])) {
267 return $this->
lng->txt(
'results');
279 $ilAccess = $DIC[
'ilAccess'];
281 $ilCtrl = $DIC[
'ilCtrl'];
284 if (!$ilAccess->checkAccess(
'write',
'', $this->obj->getRefId())) {
285 $this->tpl->setOnScreenMessage(
'info',
"cannot_export_archive",
true);
286 $ilCtrl->redirectByClass(ilObjTestGUI::class);
289 if ($this->testrequest->isset(
'file') && $this->testrequest->raw(
'file')) {
290 $file = array($this->testrequest->raw(
'file'));
293 if ($file === array()) {
294 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
'no_checkbox'),
true);
295 $ilCtrl->redirect($this,
'listExportFiles');
298 if (count($file) > 1) {
299 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
'select_max_one_item'),
true);
300 $ilCtrl->redirect($this,
'listExportFiles');
306 $exportFile = $this->obj->getExportDirectory() .
'/' .
$filename;
307 $archiveFile = $archiver->getZipExportDirectory() .
'/' .
$filename;
309 if (file_exists($exportFile)) {
313 if (file_exists($archiveFile)) {
317 $ilCtrl->redirect($this,
'listExportFiles');
323 public function delete():
void 330 $ilAccess = $DIC[
'ilAccess'];
332 $ilCtrl = $DIC[
'ilCtrl'];
334 if (!$ilAccess->checkAccess(
'write',
'', $this->obj->getRefId())) {
335 $this->tpl->setOnScreenMessage(
'info',
"cannot_export_archive",
true);
336 $ilCtrl->redirectByClass(ilObjTestGUI::class);
340 $archiveDir = $archiver->getZipExportDirectory();
342 $export_dir = $this->obj->getExportDirectory();
343 foreach ($_POST[
'file'] as $file) {
344 $file = basename($file);
345 $dir = substr($file, 0, strlen($file) - 4);
347 if (!strlen($file) || !strlen($dir)) {
351 $exp_file = $export_dir .
'/' . $file;
352 $arc_file = $archiveDir .
'/' . $file;
353 $exp_dir = $export_dir .
'/' . $dir;
354 if (@is_file($exp_file)) {
357 if (@is_file($arc_file)) {
360 if (@is_dir($exp_dir)) {
364 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
'msg_deleted_export_files'),
true);
365 $ilCtrl->redirect($this,
'listExportFiles');
createTestArchiveExport()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const PDF_USER_RESULT
PDF Purposes.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct($a_parent_gui, $a_main_obj=null)
ilGlobalTemplateInterface $tpl
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
getExportTypeFromFileName(string $export_file)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setContent(string $a_html)
Sets content for standard template.
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
addFormat(string $a_key, string $a_txt="", object $a_call_obj=null, string $a_call_func="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
static prepareGenerationRequest(string $service, string $purpose)
Prepare the content processing for a PDF generation request This function should be called as in a re...
ILIAS Test InternalRequestService $testrequest