|
69 | 69 |
|
70 | 70 | // Add a redirection
|
71 | 71 | if ($action == 'add') {
|
| 72 | + if (dol_strlen($url) == 0) { |
| 73 | + setEventMessage('URLToEncodeRequired', 'errors'); |
| 74 | + header('Location: ' . $_SERVER['PHP_SELF']); |
| 75 | + exit; |
| 76 | + } |
72 | 77 | $saturneQRCode->url = $url;
|
73 | 78 | $saturneQRCode->encoded_qr_code = $saturneQRCode->getQRCodeBase64($url);
|
74 | 79 | $saturneQRCode->module_name = 'saturne';
|
75 | 80 | $saturneQRCode->status = 1;
|
76 | 81 | $saturneQRCode->create($user);
|
| 82 | + |
| 83 | + setEventMessage('QRCodeCreated'); |
| 84 | + header('Location: ' . $_SERVER['PHP_SELF']); |
| 85 | + exit; |
| 86 | +} |
| 87 | + |
| 88 | +if ($action == 'update') { |
| 89 | + $saturneQRCode->fetch(GETPOST('id')); |
| 90 | + $saturneQRCode->url = GETPOST('url'); |
| 91 | + $saturneQRCode->encoded_qr_code = $saturneQRCode->getQRCodeBase64($saturneQRCode->url); |
| 92 | + $saturneQRCode->update($user); |
| 93 | + |
| 94 | + setEventMessage('QRCodeUpdated'); |
| 95 | + header('Location: ' . $_SERVER['PHP_SELF']); |
| 96 | + exit; |
77 | 97 | }
|
78 | 98 |
|
79 | 99 | // Remove a redirection
|
80 | 100 | if ($action == 'remove') {
|
81 | 101 | $saturneQRCode->fetch(GETPOST('id'));
|
82 | 102 | $saturneQRCode->delete($user, false, false);
|
| 103 | + |
| 104 | + setEventMessage('QRCodeRemoved'); |
| 105 | + header('Location: ' . $_SERVER['PHP_SELF']); |
| 106 | + exit; |
83 | 107 | }
|
84 | 108 |
|
85 | 109 | /*
|
|
120 | 144 | print '<td>' . $langs->trans('URL') . '</td>';
|
121 | 145 | print '<td class="center">' . $langs->trans('QR Code') . '</td>';
|
122 | 146 | print '<td class="center">' . $langs->trans('ModuleName') . '</td>';
|
123 |
| -print '<td class="center">' . $langs->trans('Action') . '</td>'; |
| 147 | +print '<td class="center">' . $langs->trans('Actions') . '</td>'; |
124 | 148 | print '</tr>';
|
125 | 149 |
|
126 | 150 | if (is_array($QRCodes) && !empty($QRCodes)) {
|
127 | 151 | foreach ($QRCodes as $QRCode) {
|
128 |
| - print '<form method="POST" action="' . $_SERVER['PHP_SELF'] . '?module_name=' . $moduleName . '">'; |
129 |
| - print '<input type="hidden" name="token" value="' . newToken() . '">'; |
130 |
| - print '<input type="hidden" name="action" value="remove">'; |
131 |
| - print '<tr class="oddeven"><td>'; |
132 |
| - print $QRCode->url; |
133 |
| - print '</td>'; |
134 |
| - print '<td class="right preview-qr-code">'; |
135 |
| - print '<input hidden class="qrcode-base64" value="'. $QRCode->encoded_qr_code .'">'; |
136 |
| - print img_picto($langs->trans("QRCodeGeneration"), 'fontawesome_fa-qrcode_fas_blue'); |
137 |
| - print ' ' . $form->textwithpicto('', $langs->trans('QRCodeGenerationTooltip')); |
138 |
| - print '</td>'; |
139 |
| - print '</td><td class="center">'; |
140 |
| - print ucfirst($QRCode->module_name); |
141 |
| - print '</td><td class="center">'; |
142 |
| - print '<input type="hidden" name="id" value="' . $QRCode->id . '">'; |
143 |
| - print '<input type="submit" class="button" value="' . $langs->trans('Remove') . '">'; |
144 |
| - print '</td></tr>'; |
145 |
| - print '</form>'; |
| 152 | + if ($action == 'edit' && $QRCode->id == GETPOST('id')) { |
| 153 | + print '<tr class="oddeven" id="qrcode-'. $QRCode->id .'"><td>'; |
| 154 | + print '<form method="POST" action="' . $_SERVER['PHP_SELF'] . '">'; |
| 155 | + print '<input type="hidden" name="token" value="' . newToken() . '">'; |
| 156 | + print '<input type="hidden" name="action" value="update">'; |
| 157 | + print '<input type="hidden" name="id" value="' . $QRCode->id . '">'; |
| 158 | + print '<input type="text" class="minwidth500" name="url" value="' . $QRCode->url . '">'; |
| 159 | + print '</td><td class="center">'; |
| 160 | + print '</td><td class="center">'; |
| 161 | + print '</td><td class="center">'; |
| 162 | + print '<input hidden class="qrcode-base64" value="'. $QRCode->encoded_qr_code .'">'; |
| 163 | + print '<button type="submit" class="butAction">' . $langs->trans('Save') . '</button>'; |
| 164 | + print '</td></tr>'; |
| 165 | + print '</form>'; |
| 166 | + } else { |
| 167 | + print '<tr class="oddeven"><td>'; |
| 168 | + print $QRCode->url; |
| 169 | + print '</td>'; |
| 170 | + print '<td class="right preview-qr-code">'; |
| 171 | + print '<input hidden class="qrcode-base64" value="'. $QRCode->encoded_qr_code .'">'; |
| 172 | + print img_picto($langs->trans("QRCodeGeneration"), 'fontawesome_fa-qrcode_fas_blue'); |
| 173 | + print ' ' . $form->textwithpicto('', $langs->trans('QRCodeGenerationTooltip')); |
| 174 | + print '</td>'; |
| 175 | + print '</td><td class="center">'; |
| 176 | + print ucfirst($QRCode->module_name); |
| 177 | + print '</td><td class="center">'; |
| 178 | + |
| 179 | + // Modify this section to use anchor tags for edit and delete actions |
| 180 | + print '<a href="' . $_SERVER['PHP_SELF'] . '?module_name=' . $moduleName . '&action=edit&id=' . $QRCode->id . '#qrcode-'. $QRCode->id .'" class="edit-button">'; |
| 181 | + print img_picto($langs->trans('Edit'), 'edit'); |
| 182 | + print '</a> '; |
| 183 | + // Form for Remove action using a form with token and a styled submit button |
| 184 | + print '<form method="POST" action="' . $_SERVER['PHP_SELF'] . '?module_name=' . $moduleName . '" style="display:inline;">'; |
| 185 | + print '<input type="hidden" name="token" value="' . newToken() . '">'; // Token for CSRF protection |
| 186 | + print '<input type="hidden" name="action" value="remove">'; // Action to remove the QR code |
| 187 | + print '<input type="hidden" name="id" value="' . $QRCode->id . '">'; // ID of the QR code to be removed |
| 188 | + print '<button type="submit" class="" title="' . $langs->trans('Remove') . '">'; |
| 189 | + print '<i class="fas fa-trash-alt"></i>'; // Font Awesome icon for the delete action |
| 190 | + print '</button>'; |
| 191 | + print '</form>'; |
| 192 | + |
| 193 | + |
| 194 | + print '</td></tr>'; |
| 195 | + } |
146 | 196 | }
|
147 | 197 | }
|
148 | 198 |
|
|
0 commit comments