1 <?php declare(strict_types=1);
42 $this->tpl = $DIC->ui()->mainTemplate();
43 $this->ctrl = $DIC->ctrl();
44 $this->lng = $DIC->language();
45 $this->
user = $DIC->user();
46 $this->toolbar = $DIC->toolbar();
47 $this->request = $DIC->http()->request();
49 $this->ctrl->saveParameter($this,
'mobj_id');
57 $forward_class = $this->ctrl->getNextClass($this);
58 switch ($forward_class) {
60 if (!($cmd = $this->ctrl->getCmd())) {
61 $cmd =
'showAttachments';
75 $sizeOfSelectedFiles = 0;
76 $filesOfRequest = (array) ($this->request->getParsedBody()[
'filename'] ?? []);
77 foreach ($filesOfRequest as $file) {
78 if (file_exists($this->mfile->getMailPath() .
'/' . basename($this->
user->getId() .
'_' . urldecode($file)))) {
79 $files[] = urldecode($file);
80 $sizeOfSelectedFiles += filesize($this->mfile->getMailPath() .
'/' . basename($this->
user->getId() .
'_' . urldecode($file)));
85 null !== $this->mfile->getAttachmentsTotalSizeLimit() &&
86 $files && $sizeOfSelectedFiles > $this->mfile->getAttachmentsTotalSizeLimit()
93 $this->umail->saveAttachments($files);
95 $this->ctrl->returnToParent($this);
100 $this->ctrl->setParameter($this,
'type',
'attach');
101 $this->ctrl->returnToParent($this);
106 $files = (array) ($this->request->getParsedBody()[
'filename'] ?? []);
107 if (0 === count($files)) {
113 $this->tpl->setTitle($this->lng->txt(
'mail'));
116 $confirmation->setFormAction($this->ctrl->getFormAction($this,
'confirmDeleteAttachments'));
117 $confirmation->setConfirm($this->lng->txt(
'confirm'),
'confirmDeleteAttachments');
118 $confirmation->setCancel($this->lng->txt(
'cancel'),
'showAttachments');
119 $confirmation->setHeaderText($this->lng->txt(
'mail_sure_delete_file'));
122 $confirmation->addItem(
129 $this->tpl->setContent($confirmation->getHtml());
130 $this->tpl->printToStdout();
135 $files = (array) ($this->request->getParsedBody()[
'filename'] ?? []);
136 if (0 === count($files)) {
143 foreach ($files as $value) {
144 $decodedFiles[] = urldecode($value);
147 $error = $this->mfile->unlinkFiles($decodedFiles);
148 if (strlen($error) > 0) {
151 $mailData = $this->umail->getSavedData();
152 if (is_array($mailData[
'attachments'])) {
154 for (
$i = 0;
$i < count($mailData[
'attachments']);
$i++) {
155 if (!in_array($mailData[
'attachments'][
$i], $decodedFiles)) {
156 $tmp[] = $mailData[
'attachments'][
$i];
159 $this->umail->saveAttachments($tmp);
162 ilUtil::sendSuccess($this->lng->txt(
'mail_files_deleted'));
175 $attachment =
new ilFileInputGUI($this->lng->txt(
'upload'),
'userfile');
177 $attachment->setSize(20);
178 $form->addItem($attachment);
185 if (strlen(trim($_FILES[
'userfile'][
'name']))) {
187 if ($form->checkInput()) {
188 $this->mfile->storeUploadedFile($_FILES[
'userfile']);
189 ilUtil::sendSuccess($this->lng->txt(
'saved_successfully'));
190 } elseif ($form->getItemByPostVar(
'userfile')->getAlert() !== $this->lng->txt(
"form_msg_file_size_exceeds")) {
204 $this->tpl->setTitle($this->lng->txt(
'mail'));
206 $attachment =
new ilFileInputGUI($this->lng->txt(
'upload'),
'userfile');
208 $attachment->setSize(20);
209 $this->toolbar->setFormAction($this->ctrl->getFormAction($this,
'uploadFile'),
true);
210 $this->toolbar->addInputItem($attachment);
211 $this->toolbar->addFormButton($this->lng->txt(
'upload'),
'uploadFile');
215 $mailData = $this->umail->getSavedData();
216 $files = $this->mfile->getUserFilesData();
219 foreach ($files as $file) {
221 if (is_array($mailData[
'attachments']) && in_array($file[
'name'], $mailData[
'attachments'])) {
225 $data[$counter] = array(
226 'checked' => $checked,
227 'filename' => $file[
'name'],
228 'filesize' => (
int) $file[
'size'],
229 'filecreatedate' => (
int) $file[
'ctime']
234 $table->setData(
$data);
236 $this->tpl->setContent($table->getHtml());
237 $this->tpl->printToStdout();
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
confirmDeleteAttachments()
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static formatSize($size, $a_mode='short', $a_lng=null)
Returns the specified file size value in a human friendly form.
__construct()
ilMailAttachmentGUI constructor.
Confirmation screen class.