ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilExAssignmentFileSystemGUI.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected int $requested_ass_id;
27  protected string $requested_old_name;
28  protected string $requested_new_name;
29  protected array $requested_order;
31  protected array $requested_file;
32 
33  public function __construct(string $main_absolute_directory)
34  {
36  global $DIC;
37 
38  $request = $DIC->exercise()->internal()->gui()->request();
39  $this->requested_ass_id = $request->getAssId();
40  $this->requested_old_name = $request->getOldName();
41  $this->requested_new_name = $request->getNewName();
42  $this->requested_order = $request->getOrder();
43  $this->requested_file = $request->getInstructionFilesToDelete();
44  $this->ctrl = $DIC->ctrl();
45  parent::__construct($main_absolute_directory);
46  }
47 
48  public function getTable(
49  string $a_dir,
50  string $a_subdir
53  $this,
54  "listFiles",
55  $a_dir,
56  $a_subdir,
57  $this->label_enable,
58  $this->file_labels,
59  "",
60  $this->getActionCommands(),
61  $this->getPostDirPath()
62  );
63  }
64 
65 
66  public function uploadFile(): void
67  {
68  $filename = ilUtil::stripSlashes($_FILES["new_file"]["name"]);
69 
70  ilExAssignment::instructionFileInsertOrder($filename, $this->requested_ass_id);
71  parent::uploadFile();
72  }
73 
74  public function saveFilesOrder(): void
75  {
76  $ilCtrl = $this->ctrl;
77 
78  if ($this->requested_ass_id > 0) {
79  ilExAssignment::saveInstructionFilesOrderOfAssignment($this->requested_ass_id, $this->requested_order);
80  $ilCtrl->redirect($this, "listFiles");
81  }
82  }
83 
84  public function deleteFile(): void
85  {
86  if ($this->requested_ass_id > 0) {
87  ilExAssignment::instructionFileDeleteOrder($this->requested_ass_id, $this->requested_file);
88 
89  parent::deleteFile();
90  }
91  }
92 
96  public function renameFile(): void
97  {
98  if ($this->requested_ass_id > 0) {
99  $new_name = str_replace("..", "", ilUtil::stripSlashes($this->requested_new_name));
100  $old_name = str_replace("/", "", $this->requested_old_name);
101 
102  if ($new_name != $old_name) {
103  ilExAssignment::renameInstructionFile($old_name, $new_name, $this->requested_ass_id);
104  }
105  }
106  parent::renameFile();
107  }
108 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTable(string $a_dir, string $a_subdir)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
global $DIC
Definition: feed.php:28
__construct(string $main_absolute_directory)
static renameInstructionFile(string $a_old_name, string $a_new_name, int $a_ass_id)
ilCtrlInterface $ctrl
static instructionFileDeleteOrder(int $a_ass_id, array $a_file)
static instructionFileInsertOrder(string $a_filename, int $a_ass_id, int $a_order_nr=0)
$filename
Definition: buildRTE.php:78
static saveInstructionFilesOrderOfAssignment(int $a_ass_id, array $a_order)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
File System Explorer GUI class.